Feedback on secrets API #112249

This commit is contained in:
Rachel Macfarlane
2021-01-20 09:24:13 -08:00
parent 64fa272029
commit 93ae815ba1
5 changed files with 8 additions and 8 deletions

View File

@@ -33,8 +33,8 @@ export class ExtensionSecrets implements vscode.SecretStorage {
return this._secretState.get(this._id, key);
}
set(key: string, value: string): Promise<void> {
return this._secretState.set(this._id, key, value);
store(key: string, value: string): Promise<void> {
return this._secretState.store(this._id, key, value);
}
delete(key: string): Promise<void> {