1 | import { KeytarService } from '../common/keytar-protocol';
|
2 | export declare class KeytarServiceImpl implements KeytarService {
|
3 | private static readonly MAX_PASSWORD_LENGTH;
|
4 | private static readonly PASSWORD_CHUNK_SIZE;
|
5 | setPassword(service: string, account: string, password: string): Promise<void>;
|
6 | deletePassword(service: string, account: string): Promise<boolean>;
|
7 | getPassword(service: string, account: string): Promise<string | undefined>;
|
8 | findPassword(service: string): Promise<string | undefined>;
|
9 | findCredentials(service: string): Promise<Array<{
|
10 | account: string;
|
11 | password: string;
|
12 | }>>;
|
13 | }
|
14 |
|
\ | No newline at end of file |