sussudio
Version:
An unofficial VS Code Internal API
17 lines (16 loc) • 790 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 { IDisposable } from "../../../common/lifecycle.mjs";
import { IPCClient } from "../common/ipc.mjs";
/**
* An implementation of `IPCClient` on top of Electron `ipcRenderer` IPC communication
* provided from sandbox globals (via preload script).
*/
export declare class Client extends IPCClient implements IDisposable {
private protocol;
private static createProtocol;
constructor(id: string);
dispose(): void;
}