UNPKG

react-native-nitro-modules

Version:

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

13 lines 280 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; }; //# sourceMappingURL=Int64.d.ts.map