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-16 18:34:53 +0300
committerBenjamin Pasero <benjpas@microsoft.com>2019-12-16 18:34:53 +0300
commitb43a377710b80bf2744f2c4931ce82a03dc10bb6 (patch)
treeb7f228a7db2eb53c4398c6db625fd2b8c58a8572 /src/typings
parentaf922adf5744efdf72915148977eefa65edf6e06 (diff)
debt - remove windows-mutex.d.ts
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;
-}