| 4 | } |
| 5 | |
| 6 | export interface AutocompleteResponse { |
| 7 | query?: string | null; |
| 8 | suggestions: Suggestion[]; |
| 9 | } |
| 10 | |
| 11 | export type LookupCallback = (query: string, done: (result: AutocompleteResponse) => void) => void; |
| 12 | export type LookupArray = string[] | Suggestion[]; |
nothing calls this directly
no outgoing calls
no test coverage detected