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

@@ -25,7 +25,7 @@ export class ExtHostSecretState implements ExtHostSecretStateShape {
return this._proxy.$getPassword(extensionId, key);
}
set(extensionId: string, key: string, value: string): Promise<void> {
store(extensionId: string, key: string, value: string): Promise<void> {
return this._proxy.$setPassword(extensionId, key, value);
}