extensions - fully provide keytar API

This commit is contained in:
Benjamin Pasero
2019-08-28 15:08:51 +02:00
parent b05051e549
commit fa7eba4888
7 changed files with 33 additions and 11 deletions

View File

@@ -263,6 +263,7 @@ export interface MainThreadKeytarShape extends IDisposable {
$setPassword(service: string, account: string, password: string): Promise<void>;
$deletePassword(service: string, account: string): Promise<boolean>;
$findPassword(service: string): Promise<string | null>;
$findCredentials(service: string): Promise<Array<{ account: string, password: string }>>;
}
export interface IRegExpDto {