Files
talk-pro/node_modules/astro/dist/assets/fonts/infra/levenshtein-string-matcher.d.ts

6 lines
217 B
TypeScript
Raw Normal View History

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