Welcome to mirror list, hosted at ThFree Co, Russian Federation.

windows-registry.d.ts « typings « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 165a20613abbf953f5053efd8b3874835619552d (plain)
1
2
3
4
5
6
7
8
9
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

declare module '@vscode/windows-registry' {
	export type HKEY = 'HKEY_CURRENT_USER' | 'HKEY_LOCAL_MACHINE' | 'HKEY_CLASSES_ROOT' | 'HKEY_USERS' | 'HKEY_CURRENT_CONFIG';
	export function GetStringRegKey(hive: HKEY, path: string, name: string): string | undefined;
}