Interface RuleOptions

interface RuleOptions {
    conditional_code_stdout?: string[];
    error?: {
        message?: string;
        stack?: string;
    };
    rule_column: {
        operator: {
            name: string;
            options: Label[];
            type: "select";
        };
        rhs: {
            name: string;
            options?: Label[];
            type: "text" | "select";
        };
    };
}

Properties

conditional_code_stdout?: string[]
error?: {
    message?: string;
    stack?: string;
}
rule_column: {
    operator: {
        name: string;
        options: Label[];
        type: "select";
    };
    rhs: {
        name: string;
        options?: Label[];
        type: "text" | "select";
    };
}