Variable $AbiParamTypeConst

$AbiParamType: {
    properties: {
        arrayChildren: {
            $ref: "#/components/schemas/AbiParamType";
            description: "The type of children of the array. This is null for any parameter which is not an array.";
        };
        arrayLength: {
            description: "The length of the array, or -1 for dynamic-length arrays. This is null for parameters which are not arrays.";
            type: "integer";
        };
        components: {
            description: "The components of a tuple. This is null for non-tuple parameters.";
            items: {
                $ref: "#/components/schemas/AbiParamType";
            };
            type: "array";
        };
        internalType: {
            example: "address";
            type: "string";
        };
        name: {
            description: "The local parameter name. This may be null for unnamed parameters. For example, the parameter definition string foobar would be foobar.";
            example: "to";
            type: "string";
        };
        type: {
            example: "address";
            type: "string";
        };
    };
    required: readonly ["name", "type", "internalType"];
    type: "object";
} = ...