UNPKG

js-ast-parser

Version:
12 lines (11 loc) 308 B
import { AstNode } from "../AstNode"; import { Expression } from "./Expression"; export declare class UnaryExpression extends Expression { type: string; code: any; operator: string; argument: AstNode; prefix: boolean; suffix: boolean; constructor(currentToken: any); }