interface UnaryExpression {
    argument: Expression;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    operator: UnaryOperator;
    prefix: true;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "UnaryExpression";
}

Hierarchy (View Summary)

Properties

argument: Expression
leadingComments?: Comment[]
loc?: null | SourceLocation
operator: UnaryOperator
prefix: true
range?: [number, number]
trailingComments?: Comment[]
type: "UnaryExpression"