Interface IDataTableFilterOperator

Operator-based filter expression for a single column.

interface IDataTableFilterOperator {
    from?: any;
    op: DataTableFilterOp;
    to?: any;
    value?: any;
}

Properties

Properties

from?: any
to?: any
value?: any