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 DoWhileStatement extends Statement { type: string; code: any; body: Block; test: AstNode; constructor(currentToken: any); }