This commit is contained in:
blagoev 2017-10-01 12:21:33 +03:00
parent b632389b75
commit 8402a6d30b
1 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ class Realm {
* migrated to use the new schema. * migrated to use the new schema.
* @param {Realm~Configuration} [config] - **Required** when first creating the Realm. * @param {Realm~Configuration} [config] - **Required** when first creating the Realm.
* @throws {Error} If anything in the provided `config` is invalid. * @throws {Error} If anything in the provided `config` is invalid.
* @throws {IncompatibleSyncedRealmError} if migration from RMP version 1 to 2 is not possible. * @throws {IncompatibleSyncedRealmError} when an incompatible synced Realm is opened
*/ */
constructor(config) {} constructor(config) {}
@ -107,7 +107,7 @@ class Realm {
* @param {callback(error, realm)} - will be called when the Realm is ready. * @param {callback(error, realm)} - will be called when the Realm is ready.
* @param {callback(transferred, transferable)} [progressCallback] - an optional callback for download progress notifications * @param {callback(transferred, transferable)} [progressCallback] - an optional callback for download progress notifications
* @throws {Error} If anything in the provided `config` is invalid * @throws {Error} If anything in the provided `config` is invalid
* @throws {IncompatibleSyncedRealmError} if migration from RMP version 1 to 2 is not possible * @throws {IncompatibleSyncedRealmError} when an incompatible synced Realm is opened
*/ */
static openAsync(config, callback, progressCallback) {} static openAsync(config, callback, progressCallback) {}