bupkis
    Preparing search index...

    Interface $ZodIssueTooBig<Input>

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

    Type Parameters

    • Input = unknown

    Hierarchy (View Summary)

    Index

    Properties

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