Selects one of two expressions, Alternate or Consequent, depending on a third boolean expression, Test

interface ConditionalExpression {
    alternate?: Expression;
    consequent?: Expression;
    test?: Expression;
    type?: string;
}

Properties

alternate?: Expression
consequent?: Expression
test?: Expression
type?: string
MMNEPVFCICPMFPCPTTAAATR