| 13 | const DEFAULT_TYPEAHEAD_DEBOUNCE_INTERVAL_MS = 200; |
| 14 | |
| 15 | interface TypeaheadItem { |
| 16 | getLabel?(): string; |
| 17 | } |
| 18 | |
| 19 | interface TypeaheadConfig<T> { |
| 20 | debounceInterval?: number; |
no outgoing calls
no test coverage detected
searching dependent graphs…