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

Hierarchy (view full)

Properties

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