Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

StringWithDistance

import type { StringWithDistance } from "https://raw.githubusercontent.com/el3um4s/Damerau-Levenshtein/master/mod.ts";

Interface for string, compared string and distance beetween

interface StringWithDistance {
compared: string;
distance: number;
string: string;
}

§Properties

§
compared: string
[src]
§
distance: number
[src]
§
string: string
[src]