UNPKG

react-native-nitro-modules

Version:

Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.

10 lines (8 loc) 234 B
/** * Represents an unsigned 64-bit integer (or "uint64"). */ export type UInt64 = bigint & { __unsignedTag?: never } /** * Represents a signed 64-bit integer (or "int64"). */ export type Int64 = bigint & { __signedTag?: never }