vscode-chrome-debug-core
Version:
A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol
7 lines (6 loc) • 411 B
TypeScript
import { StoppedEvent } from 'vscode-debugadapter';
import { Protocol as Crdp } from 'devtools-protocol';
export declare type ReasonType = 'step' | 'breakpoint' | 'exception' | 'pause' | 'entry' | 'debugger_statement' | 'frame_entry' | 'promise_rejection';
export declare class StoppedEvent2 extends StoppedEvent {
constructor(reason: ReasonType, threadId: number, exception?: Crdp.Runtime.RemoteObject);
}