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:
authorJoao Moreno <joao.moreno@microsoft.com>2019-11-08 17:09:34 +0300
committerJoao Moreno <joao.moreno@microsoft.com>2019-11-08 17:09:34 +0300
commitbf1ee601655388e8f57ec900f1d4098864fc720e (patch)
treef25ed4de346f59bf8db95e36a6605b5a3164cfdd /src/typings
parent3a34be0fd0ac863fa84a06f3522b6d96ee9dd9cf (diff)
remove windows-mutex from typings
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/windows-mutex.d.ts14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/typings/windows-mutex.d.ts b/src/typings/windows-mutex.d.ts
deleted file mode 100644
index 07c5908def2..00000000000
--- a/src/typings/windows-mutex.d.ts
+++ /dev/null
@@ -1,14 +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 'windows-mutex' {
- export class Mutex {
- constructor(name: string);
- isActive(): boolean;
- release(): void;
- }
-
- export function isActive(name: string): boolean;
-}