UNPKG

realm

Version:

Realm by MongoDB is an offline-first mobile database: an alternative to SQLite and key-value stores

19 lines (18 loc) 514 B
/** * Throws an error when a property is accessed before the native module has been injected. * @internal */ export declare function _throwOnAccess(propertyName: string): void; export declare class Float { value: number; constructor(value: number); valueOf(): number; } export declare class Status { isOk: boolean; code?: number; reason?: string; constructor(isOk: boolean); } export declare const ListSentinel: unique symbol; export declare const DictionarySentinel: unique symbol;