UNPKG

js-ast-parser

Version:
9 lines (8 loc) 237 B
import { AstNode } from "../AstNode"; import { Statement } from "./Statement"; export declare class ThrowStatement extends Statement { type: string; code: any; argument: AstNode; constructor(currentToken: any); }