@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
39 lines (37 loc) • 1.56 kB
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 { Event } from '@sussudio/base/common/event.mjs';
export declare const IExtensionHostDebugService: import('../../instantiation/common/instantiation.mjs').ServiceIdentifier<IExtensionHostDebugService>;
export interface IAttachSessionEvent {
sessionId: string;
subId?: string;
port: number;
}
export interface ITerminateSessionEvent {
sessionId: string;
subId?: string;
}
export interface IReloadSessionEvent {
sessionId: string;
}
export interface ICloseSessionEvent {
sessionId: string;
}
export interface IOpenExtensionWindowResult {
rendererDebugPort?: number;
success: boolean;
}
export interface IExtensionHostDebugService {
readonly _serviceBrand: undefined;
reload(sessionId: string): void;
readonly onReload: Event<IReloadSessionEvent>;
close(sessionId: string): void;
readonly onClose: Event<ICloseSessionEvent>;
attachSession(sessionId: string, port: number, subId?: string): void;
readonly onAttachSession: Event<IAttachSessionEvent>;
terminateSession(sessionId: string, subId?: string): void;
readonly onTerminateSession: Event<ITerminateSessionEvent>;
openExtensionDevelopmentHostWindow(args: string[], debugRenderer: boolean): Promise<IOpenExtensionWindowResult>;
}