mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 15:25:47 +01:00
Add getPassword, setPassword, and deletePassword APIs, #95475
Co-authored-by: SteVen Batten <sbatten@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
1a9e0af641
commit
dafce599a6
@@ -0,0 +1,11 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { createDecorator } from 'vs/platform/instantiation/common/instantiation';
|
||||
import { ICommonEncryptionService } from 'vs/platform/encryption/electron-main/common/encryptionService';
|
||||
|
||||
export const IEncryptionService = createDecorator<IEncryptionService>('encryptionService');
|
||||
|
||||
export interface IEncryptionService extends ICommonEncryptionService { }
|
||||
Reference in New Issue
Block a user