Member Junction
    Preparing search index...
    interface ComponentEventParameter {
        description: string;
        name: string;
        type:
            | "string"
            | "number"
            | "boolean"
            | "object"
            | "function"
            | "array"
            | "any";
    }
    Index

    Properties

    Properties

    description: string

    A description of what this parameter is used for

    name: string

    The name of the parameter

    type: "string" | "number" | "boolean" | "object" | "function" | "array" | "any"

    The type of the parameter. It can be one of 'string', 'number', 'boolean', 'object', 'array', 'function', or 'any'.