sussudio
Version:
An unofficial VS Code Internal API
14 lines (13 loc) • 665 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 a `IPCServer` on top of MessagePort style IPC communication.
* The clients register themselves via Electron IPC transfer.
*/
export declare class Server extends IPCServer {
private static getOnDidClientConnect;
constructor();
}