export interface ISearchable<T> { /** * */ search(event: any): void; /** * */ toggleSearch(): void; /** * */ isSearchMode(): boolean; }