IOweb/node_modules/astro/dist/assets/fonts/infra/levenshtein-string-matcher.d.ts
2026-07-03 15:07:38 -05:00

5 lines
217 B
TypeScript

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