Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.d.ts « fastest-levenshtein « node_modules « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bdc2bb1cc32e0ab37fcfc2b84a7ecb62efb9597b (plain)
1
2
export function distance(a: string, b: string): number;
export function closest(str: string, arr: string[]): string;