UNPKG

vscode-chrome-debug-core

Version:

A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol

8 lines (7 loc) 434 B
import { Protocol as Crdp } from 'devtools-protocol'; export declare function formatExceptionDetails(e: Crdp.Runtime.ExceptionDetails): string; export declare const clearConsoleCode = "\u001B[2J"; export declare function formatConsoleArguments(type: Crdp.Runtime.ConsoleAPICalledEvent['type'], args: Crdp.Runtime.RemoteObject[], stackTrace?: Crdp.Runtime.StackTrace): { args: Crdp.Runtime.RemoteObject[]; isError: boolean; };