UNPKG

@sudoo/marked

Version:

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

11 lines (10 loc) 541 B
/** * @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 declareVariableStackArray: (this: Sandbox, node: EST.VariableDeclaration, type: VARIABLE_TYPE, declaration: EST.VariableDeclarator, scope: IScope, currentTrace: ITrace, nextTrace: ITrace) => Promise<DeclareVariableElement[]>;