interface-forge - v2.5.0
    Preparing search index...

    Interface $ZodIssueTooBig<Input>

    interface $ZodIssueTooBig<Input = unknown> {
        code: "too_big";
        inclusive?: boolean;
        input: Input;
        maximum: number | bigint;
        message: string;
        origin:
            | "string"
            | "number"
            | "bigint"
            | string & {}
            | "date"
            | "int"
            | "file"
            | "array"
            | "set";
        path: PropertyKey[];
    }

    Type Parameters

    • Input = unknown

    Hierarchy (View Summary)

    Index

    Properties

    code: "too_big"
    inclusive?: boolean
    input: Input
    maximum: number | bigint
    message: string
    origin:
        | "string"
        | "number"
        | "bigint"
        | string & {}
        | "date"
        | "int"
        | "file"
        | "array"
        | "set"
    path: PropertyKey[]