interface ZodTooBigIssue {
    code: "too_big";
    exact?: boolean;
    inclusive: boolean;
    maximum: number | bigint;
    message?: string;
    path: (string | number)[];
    type:
        | "string"
        | "number"
        | "bigint"
        | "date"
        | "array"
        | "set";
}

Hierarchy (view full)

Properties

code: "too_big"
exact?: boolean
inclusive: boolean
maximum: number | bigint
message?: string
path: (string | number)[]
type:
    | "string"
    | "number"
    | "bigint"
    | "date"
    | "array"
    | "set"