Interface BooleanExpression

interface BooleanExpression {
    leftOperand?: {};
    operator: string;
    rightOperand: any;
    type: string;
}

Hierarchy (view full)

Properties

leftOperand?: {}
operator: string
rightOperand: any
type: string