bupkis
    Preparing search index...

    Interface $ZodBigIntFormatInternals

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

    Hierarchy (View Summary)

    Index

    Properties

    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: $ZodIssueTooBig<"bigint"> | $ZodIssueTooSmall<"bigint">

    The set of issues this check might throw.

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

    Methods