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:
authorBenjamin Pasero <benjpas@microsoft.com>2019-12-18 17:12:03 +0300
committerBenjamin Pasero <benjpas@microsoft.com>2019-12-18 17:12:17 +0300
commit25810007508ba9bac40c1d9640c0acd99cd9c615 (patch)
tree155f4bc2966f4807bc26e7a43b41fb52e3b7a656 /src/typings
parent369fa90ac45cc69460d9d439c967d93c1145a513 (diff)
add types for windows-registry (fix #83421)
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/vscode-windows-registry.d.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/typings/vscode-windows-registry.d.ts b/src/typings/vscode-windows-registry.d.ts
deleted file mode 100644
index 9be14daa4b2..00000000000
--- a/src/typings/vscode-windows-registry.d.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * 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;
-} \ No newline at end of file