mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 01:33:33 +00:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { CipherView } from '../models/view/cipherView';
|
|
|
|
export abstract class SearchService {
|
|
indexCiphers: () => Promise<void>;
|
|
searchCiphers: (query: string) => Promise<CipherView[]>;
|
|
}
|