Package version:

Type alias SqlRuleAction

SqlRuleAction: {
    sqlExpression?: string;
    sqlParameters?: {
        [key: string]: string | number | boolean;
    };
}

Represents all possible fields on SqlRuleAction

Type declaration

  • Optional sqlExpression?: string

    SQL expression to use in the rule action.

  • Optional sqlParameters?: {
        [key: string]: string | number | boolean;
    }

    SQL parameters to the SQL expression in the rule action.

    • [key: string]: string | number | boolean

Generated using TypeDoc