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