@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
15 lines (14 loc) • 376 B
TypeScript
/**
* @author WMXPY
* @namespace Debug_Snapshot
* @description Position
*/
import * as EST from "estree";
export declare class MarkedDebugSnapshotPosition {
static fromPosition(position: EST.Position): MarkedDebugSnapshotPosition;
private readonly _line;
private readonly _column;
private constructor();
get line(): number;
get column(): number;
}