@samatawy/rules
    Preparing search index...

    Interface NamedParameter

    A named and typed parameter that can be passed to a function.

    interface NamedParameter {
        type: ArgumentType;
        optional?: boolean;
        name: string;
    }

    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
    name: string

    The name of the parameter, which is used to identify it in function definitions and calls.