Interface DebugSessionCustomEvent

A custom Debug Adapter Protocol event received from a debug session.

interface DebugSessionCustomEvent {
    body?: any;
    event: string;
    session: DebugSession;
}

Properties

Properties

body?: any

Event specific information.

event: string

Type of event.

session: DebugSession

The debug session for which the custom event was received.