UNPKG

js-ast-parser

Version:
10 lines (9 loc) 290 B
import { AstNode } from "../AstNode"; import { Statement } from "./Statement"; export declare class VariableDeclarationStatement extends Statement { type: string; code: any; declarationKeyWord: string; declarations: AstNode[]; constructor(currentToken: any); }