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;
}

Type declaration

  • inclusive: boolean
  • kind: "min"
  • Optional message?: string
  • value: bigint

Type declaration

  • inclusive: boolean
  • kind: "max"
  • Optional message?: string
  • value: bigint

Type declaration

  • kind: "multipleOf"
  • Optional message?: string
  • value: bigint

Generated using TypeDoc