UNPKG

608 BTypeScriptView Raw
1export declare const keyStoreServicePath = "/services/keyStore";
2export declare const KeyStoreService: unique symbol;
3export interface KeyStoreService {
4 setPassword(service: string, account: string, password: string): Promise<void>;
5 getPassword(service: string, account: string): Promise<string | undefined>;
6 deletePassword(service: string, account: string): Promise<boolean>;
7 findPassword(service: string): Promise<string | undefined>;
8 findCredentials(service: string): Promise<Array<{
9 account: string;
10 password: string;
11 }>>;
12}
13//# sourceMappingURL=key-store.d.ts.map
\No newline at end of file