@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
11 lines (10 loc) • 364 B
TypeScript
/**
* @author WMXPY
* @namespace Operation
* @description Break Point
*/
import * as EST from "estree";
import { Sandbox } from "../marked/sandbox";
import { Scope } from "../variable/scope";
import { Trace } from "../variable/trace/trace";
export declare const pauseForBreakPoint: (this: Sandbox, node: EST.Node, scope: Scope, trace: Trace) => Promise<void>;