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

    Interface $ZodIssueTooSmall<Input>

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

    Type Parameters

    • Input = unknown

    Hierarchy (View Summary)

    Index

    Properties

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