Represents the rule conditions that collectively evaluate to either true or false

interface LogicalExpression {
    left?: Expression;
    operator?: string;
    right?: Expression;
    type?: string;
}

Properties

left?: Expression
operator?: string
right?: Expression
type?: string
MMNEPVFCICPMFPCPTTAAATR