interface ConditionalExpression {
    alternate: Expression;
    consequent: Expression;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    test: Expression;
    trailingComments?: Comment[];
    type: "ConditionalExpression";
}

Hierarchy (View Summary)

Properties

alternate: Expression
consequent: Expression
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "ConditionalExpression"