UNPKG

js-ast-parser

Version:
11 lines (10 loc) 291 B
import { Block } from "../../Block"; import { AstNode } from "../AstNode"; import { Statement } from "./Statement"; export declare class WithStatement extends Statement { type: string; code: any; context: AstNode; body: Block; constructor(currentToken: any); }