vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface RuleGroup

    interface RuleGroup {
        group: {
            operator: "AND" | "OR";
            rules: (
                RuleGroup
                | { condition: string; data: null | string; field: string }
            )[];
        };
    }
    Index

    Properties

    Properties

    group: {
        operator: "AND" | "OR";
        rules: (
            RuleGroup
            | { condition: string; data: null | string; field: string }
        )[];
    }