fieldnotesai
    Preparing search index...

    Interface FilterState<T>

    Represents the runtime state of a single filter:

    • config - the static definition (key, label, predicate)
    • value - current value selected by the user (empty string = not applied)
    interface FilterState<T> {
        config: FilterConfig<T>;
        value: string;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    config: FilterConfig<T>
    value: string