sussudio
Version:
An unofficial VS Code Internal API
14 lines (13 loc) • 625 B
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { IPCServer } from "../common/ipc.mjs";
/**
* An implementation of `IPCServer` on top of Electron `ipcMain` API.
*/
export declare class Server extends IPCServer {
private static readonly Clients;
private static getOnDidClientConnect;
constructor();
}