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

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteVen Batten <stbatt@microsoft.com>2022-01-08 01:53:04 +0300
committerSteVen Batten <stbatt@microsoft.com>2022-01-08 01:53:04 +0300
commit5699e3891a83fa59dc15c3db2b7a16de5303c300 (patch)
treecda822cd05cb2e5e581566f860872dbc4580caf0 /src/typings
parent9410697460fdd45cc74bc311466f9f2287998911 (diff)
add typings
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/windows-registry.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/typings/windows-registry.d.ts b/src/typings/windows-registry.d.ts
new file mode 100644
index 00000000000..165a20613ab
--- /dev/null
+++ b/src/typings/windows-registry.d.ts
@@ -0,0 +1,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;
+}