UNPKG

js-ast-parser

Version:
11 lines (10 loc) 359 B
import { Block } from "../../Block"; import { Expression } from "./Expression"; import { IdentifierLiteralExpression } from "./IdentifierLiteralExpression"; export declare class FunctionExpression extends Expression { type: string; code: any; params: IdentifierLiteralExpression[]; body: Block; constructor(currentToken: any); }