@react-native-ohos/realm
Version:
Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores
10 lines (9 loc) • 434 B
TypeScript
import type { binding } from "./wrapper.generated";
export declare class PolyfilledBigInt {
static add(a: binding.Int64, b: binding.Int64): binding.Int64;
static equals(a: binding.Int64, b: binding.Int64 | number | string): boolean;
static isInt(a: unknown): a is binding.Int64;
static numToInt(a: number): binding.Int64;
static strToInt(a: string): binding.Int64;
static intToNum(a: binding.Int64): number;
}