UNPKG

307 BTypeScriptView Raw
1export interface Target {
2 typeId: string;
3 value: string;
4}
5export interface Rating {
6 target: Target;
7 rating: number;
8}
9export interface BestMatch {
10 ratings: Rating[];
11 bestMatch: Rating;
12}
13export declare function findBestMatch(mainString: string, targetStrings: Target[]): BestMatch;