import { Observable } from "rxjs"; import { SendView } from "../tools/send/models/view/send.view"; import { IndexedEntityId } from "../types/guid"; import { CipherView } from "../vault/models/view/cipher.view"; export abstract class SearchService { indexedEntityId$: Observable; clearIndex: () => Promise; isSearchable: (query: string) => Promise; indexCiphers: (ciphersToIndex: CipherView[], indexedEntityGuid?: string) => Promise; searchCiphers: ( query: string, filter?: ((cipher: CipherView) => boolean) | ((cipher: CipherView) => boolean)[], ciphers?: CipherView[], ) => Promise; searchCiphersBasic: (ciphers: CipherView[], query: string, deleted?: boolean) => CipherView[]; searchSends: (sends: SendView[], query: string) => SendView[]; }