vscode-chrome-debug-core
Version:
A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol
12 lines (11 loc) • 505 B
TypeScript
import { Protocol as Crdp } from 'devtools-protocol';
import { DebugProtocol } from 'vscode-debugprotocol';
export declare class InternalSourceBreakpoint {
static readonly LOGPOINT_URL: string;
readonly line: number;
readonly column?: number;
readonly condition?: string;
readonly hitCondition?: string;
constructor(breakpoint: DebugProtocol.SourceBreakpoint);
}
export declare function stackTraceWithoutLogpointFrame(stackTrace: Crdp.Runtime.StackTrace): Crdp.Runtime.StackTrace;