| 6 | import { escapeHtml, fetchData } from "./utils"; |
| 7 | |
| 8 | export interface SearchItem { |
| 9 | title: string; |
| 10 | description?: string; |
| 11 | searchText?: string; |
| 12 | path: string; |
| 13 | type: string; |
| 14 | [key: string]: unknown; |
| 15 | } |
| 16 | |
| 17 | export interface SearchableItem { |
| 18 | title: string; |
nothing calls this directly
no outgoing calls
no test coverage detected