Interface ConditionalExpression

interface ConditionalExpression {
    leftOperand: {};
    operator: string;
    rightOperand: any;
    rightOperands: {}[];
    type: string;
}

Hierarchy (view full)

Properties

leftOperand: {}
operator: string
rightOperand: any
rightOperands: {}[]
type: string