UNPKG

cockatoo.js

Version:

Fuzzy search library based based on Damerau Levenshtein distance algorithm for Node.js

10 lines (9 loc) 218 B
import { TokenMatch } from "./tokenMatch"; export declare class Match<T> { item: T; score: number; completeness: number; tokenScore: number; tokenMatches: TokenMatch[]; constructor(obj: any); }