UNPKG

js-ast-parser

Version:
12 lines (11 loc) 424 B
import { Block } from "../../Block"; import { IdentifierLiteralExpression } from "../expression/IdentifierLiteralExpression"; import { Statement } from "./Statement"; export declare class FunctionDeclarationStatement extends Statement { type: string; code: any; identifier: IdentifierLiteralExpression; params: IdentifierLiteralExpression[]; body: Block; constructor(currentToken: any); }