@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface FilterExpression<_T>

    The complete, serialisable state of a filter predicate builder.

    The row object type (for documentation; not enforced at runtime).

    interface FilterExpression<_T = any> {
        junction: FilterJunction;
        rules: FilterRule[];
    }

    Type Parameters

    • _T = any
    Index

    Properties

    Properties

    junction: FilterJunction

    How the rules are combined (and = all must match, or = any).

    rules: FilterRule[]

    The individual filter rules.