Interface IDataTablePrefFilterRule

A single filter rule within a datatable preference.

interface IDataTablePrefFilterRule {
    columnKey: string;
    operator?: DataTableFilterOp;
    value?: any;
}

Properties

columnKey: string

Column key to filter on.

Filter operator (defaults to 'eq').

value?: any

Value to compare against.