@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
16 lines (15 loc) • 412 B
TypeScript
/**
* @author WMXPY
* @namespace Debug_Snapshot
* @description Node
*/
import * as EST from "estree";
import { EST_TYPE } from "../../declare/types";
export declare class MarkedDebugSnapshotNode {
static fromNode(node: EST.Node): MarkedDebugSnapshotNode;
private readonly _node;
private constructor();
get type(): EST_TYPE;
getLeadComments(): string[];
getTailComments(): string[];
}