featherbit UI
    Preparing search index...

    Interface ConditionGroup

    A logical group of rules/groups (AND/OR, optionally negated).

    interface ConditionGroup {
        children: ConditionNode[];
        kind: "group";
        logic: "AND" | "OR";
        negate: boolean;
    }
    Index
    children: ConditionNode[]
    kind: "group"
    logic: "AND" | "OR"
    negate: boolean