mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-08 08:36:46 +01:00
c96f5d1291
Fixes #43287
15 lines
535 B
TypeScript
15 lines
535 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* 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;
|
|
}
|