1 | export declare const keyStoreServicePath = "/services/keyStore";
|
2 | export declare const KeyStoreService: unique symbol;
|
3 | export 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 |
|
\ | No newline at end of file |