BUPKIS
    Preparing search index...

    Interface $ZodNumberFormatInternals

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

    Hierarchy (View Summary)

    Index

    Methods

    Properties

    Schema definition.

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

    The set of issues this check might throw.

    Internal API, use with caution (not deprecated)

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

    Internal API, use with caution (not deprecated)

    toJSONSchema?: () => unknown

    An optional method used to override toJSONSchema logic.

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

    The @zod/core version of this schema