Type Alias ZodBigIntCheck

ZodBigIntCheck: {
    inclusive: boolean;
    kind: "min";
    message?: string;
    value: bigint;
} | {
    inclusive: boolean;
    kind: "max";
    message?: string;
    value: bigint;
} | {
    kind: "multipleOf";
    message?: string;
    value: bigint;
}