Files
dns-server/node_modules/fastest-levenshtein/mod.d.ts
T
Alex Yang f627244b8f 更新
2026-03-30 01:04:46 +08:00

4 lines
160 B
TypeScript

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