bigint_like: number | bigint | string

Type for 64-bit integers.

We accept either

  • Number (if it is less than Number.MAX_SAFE_INTEGER)
  • String (representing 64-bit number)
  • BigInt (if platform supports it natively)

Generated using TypeDoc