UNPKG

@spotinst/spinnaker-deck

Version:

Spinnaker-Deck service, forked with support to Spotinst

12 lines (9 loc) 360 B
declare module 'js-worker-search' { type IndexMode = 'ALL_SUBSTRINGS' | 'EXACT_WORDS' | 'PREFIXES'; class SearchApi { constructor(indexMode?: IndexMode, tokenizePattern?: RegExp, caseSensitive?: boolean); public indexDocument(uid: any, text: string): SearchApi; public search(query: string): Promise<any[]>; } export default SearchApi; }