Files
ihrm/node_modules/fastest-levenshtein/mod.d.ts
2023-05-10 15:06:57 +05:30

4 lines
163 B
TypeScript

declare const distance: (a: string, b: string) => number;
declare const closest: (str: string, arr: readonly string[]) => string;
export { closest, distance };