mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 10:13:31 +00:00
search service with lunr implementation
This commit is contained in:
6
src/abstractions/search.service.ts
Normal file
6
src/abstractions/search.service.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { CipherView } from '../models/view/cipherView';
|
||||
|
||||
export abstract class SearchService {
|
||||
indexCiphers: () => Promise<void>;
|
||||
searchCiphers: (query: string) => Promise<CipherView[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user