UNPKG

@exmg/exmg-searchbar

Version:

An element to search the needle in a haystack.

8 lines (7 loc) 358 B
import { TemplateResult } from 'lit'; import { ExmgSearchSuggestion } from './exmg-searchbar-base'; export interface ExmgSearchBarBaseInterface { filter(data: any[], filterKeys: string[], query: string): ExmgSearchSuggestion[]; renderSuggestions(suggestions: ExmgSearchSuggestion[]): TemplateResult; renderSuggestionsLoading(): TemplateResult; }