UNPKG

@sudoo/marked

Version:

JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous

13 lines (12 loc) 473 B
/** * @author WMXPY * @namespace Debug_Snapshot * @description Declare */ export type MarkedDebugSnapshotScopeMap = Map<string, MarkedDebugSnapshotScopeVariable>; export type MarkedDebugSnapshotScopeVariable = { readonly type: "function" | "number" | "bigint" | "string" | "boolean" | "undefined" | "null" | "list" | "map" | "regexp" | "class" | "class-instance" | "unknown"; readonly value: any; readonly native: boolean; readonly mutable: boolean; };