Interface ICRulesEditorProps

interface ICRulesEditorProps {
    facts: any;
    onChange?: ((RuleGroup) => void);
    options?: RulesEditorOptions;
    rules: RuleGroup;
}

Properties

facts: any
onChange?: ((RuleGroup) => void)

Type declaration

    • (RuleGroup): void
    • Parameters

      • RuleGroup: any

      Returns void

rules: RuleGroup