@samatawy/rules
    Preparing search index...

    Interface TypedParameter

    A typed parameter definition to specify the expected type of each parameter in a built-in (or custom) function. This is used for type checking and validation of function arguments when the function is called in rules and expressions.

    interface TypedParameter {
        type: ArgumentType;
        optional?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    The type of the parameter, which can be an atomic type, an array type, a lambda type, or any type. This defines the expected type of the parameter value when the function is called.

    optional?: boolean