@theia/core
Version:
Theia is a cloud & desktop IDE framework implemented in TypeScript.
13 lines • 606 B
TypeScript
export declare const keytarServicePath = "/services/keytar";
export declare const KeytarService: unique symbol;
export interface KeytarService {
setPassword(service: string, account: string, password: string): Promise<void>;
getPassword(service: string, account: string): Promise<string | undefined>;
deletePassword(service: string, account: string): Promise<boolean>;
findPassword(service: string): Promise<string | undefined>;
findCredentials(service: string): Promise<Array<{
account: string;
password: string;
}>>;
}
//# sourceMappingURL=keytar-protocol.d.ts.map