@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
13 lines (11 loc) • 738 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export declare const IEncryptionMainService: import('../../instantiation/common/instantiation.mjs').ServiceIdentifier<IEncryptionMainService>;
export interface IEncryptionMainService extends ICommonEncryptionService {}
export interface ICommonEncryptionService {
readonly _serviceBrand: undefined;
encrypt(value: string): Promise<string>;
decrypt(value: string): Promise<string>;
}