BUPKIS
    Preparing search index...

    Interface $ZodBigIntFormatDef

    interface $ZodBigIntFormatDef {
        abort?: boolean;
        check: "bigint_format";
        checks?: z.core.$ZodCheck<never>[];
        coerce?: boolean;
        error?: $ZodErrorMap<never>;
        format: $ZodBigIntFormats | undefined;
        type: "bigint";
        when?: (payload: ParsePayload) => boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    abort?: boolean

    If true, no later checks will be executed if this check fails. Default false.

    check: "bigint_format"
    checks?: z.core.$ZodCheck<never>[]
    coerce?: boolean
    error?: $ZodErrorMap<never>
    format: $ZodBigIntFormats | undefined
    type: "bigint"
    when?: (payload: ParsePayload) => boolean

    If provided, this check will only be executed if the function returns true. Defaults to payload => z.util.isAborted(payload).