Interface RuleGroupEditorProps

interface RuleGroupEditorProps {
    FactsEditor?: FC<FactsEditorProps>;
    depth?: number;
    extra?: any;
    facts?: any;
    index?: number;
    onChange?: ((RuleGroup, index, parentIndex?) => void);
    rules?: RuleGroup;
    showFactsEditor?: boolean;
}

Properties

FactsEditor?: FC<FactsEditorProps>
depth?: number
extra?: any
facts?: any
index?: number
onChange?: ((RuleGroup, index, parentIndex?) => void)

Type declaration

    • (RuleGroup, index, parentIndex?): void
    • Parameters

      • RuleGroup: any
      • index: any
      • Optional parentIndex: any

      Returns void

rules?: RuleGroup
showFactsEditor?: boolean