mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 19:44:25 +01:00
Feedback on secrets API #112249
This commit is contained in:
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user