@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
21 lines (20 loc) • 607 B
TypeScript
/**
* @author WMXPY
* @namespace Debug
* @description Flow Controller
*/
export type MarkedDebugFlowControllerOptions = {
readonly continueMethod: () => void;
readonly terminateMethod: () => void;
readonly nextStepMethod: () => void;
};
export declare class MarkedDebugFlowController {
static fromOptions(options: MarkedDebugFlowControllerOptions): MarkedDebugFlowController;
private readonly _continueMethod;
private readonly _terminateMethod;
private readonly _nextStepMethod;
private constructor();
continue(): void;
terminate(): void;
nextStep(): void;
}