Files
talk-pro/node_modules/astro/dist/assets/fonts/infra/levenshtein-string-matcher.d.ts
2026-05-12 16:16:03 +08:00

6 lines
217 B
TypeScript

import type { StringMatcher } from '../definitions.js';
export declare class LevenshteinStringMatcher implements StringMatcher {
#private;
getClosestMatch(target: string, candidates: Array<string>): string;
}