@sudoo/marked
Version:
JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous
11 lines (10 loc) • 469 B
TypeScript
/**
* @author WMXPY
* @namespace Operation_VariableDeclaration
* @description Declaration
*/
import * as EST from "estree";
import { IScope, ITrace } from "../../declare/variable";
import { Sandbox } from "../../marked/sandbox";
import { DeclareVariableElement } from "./declare";
export declare const declareVariableStack: (this: Sandbox, node: EST.VariableDeclaration, scope: IScope, currentTrace: ITrace, nextTrace: ITrace) => Promise<DeclareVariableElement[]>;