bupkis
    Preparing search index...

    Interface $ZodNumberFormatInternals

    interface $ZodNumberFormatInternals {
        def: $ZodNumberFormatDef;
        isst: $ZodIssueInvalidType;
        pattern: RegExp;
        version: { major: 4; minor: 1; patch: number };
        toJSONSchema?: () => unknown;
        issc:
            | $ZodIssueInvalidType<unknown>
            | $ZodIssueTooBig<"number">
            | $ZodIssueTooSmall<"number">;
        onattach: ((schema: z.core.$ZodType) => void)[];
        check(payload: ParsePayload<number>): MaybeAsync<void>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Schema definition.

    Internal API, use with caution (not deprecated)

    pattern: RegExp

    Internal API, use with caution (not deprecated)

    version: { major: 4; minor: 1; patch: number }

    The @zod/core version of this schema

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.

    issc:
        | $ZodIssueInvalidType<unknown>
        | $ZodIssueTooBig<"number">
        | $ZodIssueTooSmall<"number">

    The set of issues this check might throw.

    onattach: ((schema: z.core.$ZodType) => void)[]

    Methods