| 4 | rank: number; |
| 5 | } |
| 6 | export interface Searcher<T extends object> { |
| 7 | reset(): void; |
| 8 | isEmptyIndex(): boolean; |
| 9 | index(data: T[]): void; |
| 10 | search(needle: string): SearchResult<T>[]; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected