| 21 | } |
| 22 | |
| 23 | export interface SearchOptions { |
| 24 | fields?: string[]; |
| 25 | limit?: number; |
| 26 | minScore?: number; |
| 27 | } |
| 28 | |
| 29 | export class FuzzySearch<T extends SearchableItem = SearchItem> { |
| 30 | private items: T[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected