@firebase/database 0.13.3-canary.39f4635eb → 0.13.3-canary.572e111e3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm2017.js +5 -6
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +5 -6
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +5 -6
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.standalone.js +4 -5
- package/dist/index.standalone.js.map +1 -1
- package/dist/internal.d.ts +7 -6
- package/dist/node-esm/index.node.esm.js +5 -6
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/api/Reference_impl.d.ts +7 -6
- package/dist/private.d.ts +7 -6
- package/dist/public.d.ts +7 -6
- package/dist/src/api/Reference_impl.d.ts +7 -6
- package/package.json +6 -6
package/dist/index.node.cjs.js
CHANGED
|
@@ -1289,7 +1289,7 @@ var WebSocketConnection = /** @class */ (function () {
|
|
|
1289
1289
|
}());
|
|
1290
1290
|
|
|
1291
1291
|
var name = "@firebase/database";
|
|
1292
|
-
var version = "0.13.3-canary.
|
|
1292
|
+
var version = "0.13.3-canary.572e111e3";
|
|
1293
1293
|
|
|
1294
1294
|
/**
|
|
1295
1295
|
* @license
|
|
@@ -13472,12 +13472,11 @@ function onChildRemoved(query, callback, cancelCallbackOrListenOptions, options)
|
|
|
13472
13472
|
return addEventListener(query, 'child_removed', callback, cancelCallbackOrListenOptions, options);
|
|
13473
13473
|
}
|
|
13474
13474
|
/**
|
|
13475
|
-
* Detaches a callback previously attached with `on()
|
|
13475
|
+
* Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.
|
|
13476
|
+
* Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from
|
|
13477
|
+
* the respective `on*` callbacks.
|
|
13476
13478
|
*
|
|
13477
|
-
* Detach a callback previously attached with `on()`.
|
|
13478
|
-
* called multiple times with the same eventType and callback, the callback
|
|
13479
|
-
* will be called multiple times for each event, and `off()` must be called
|
|
13480
|
-
* multiple times to remove the callback. Calling `off()` on a parent listener
|
|
13479
|
+
* Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener
|
|
13481
13480
|
* will not automatically remove listeners registered on child nodes, `off()`
|
|
13482
13481
|
* must also be called on any child listeners to remove the callback.
|
|
13483
13482
|
*
|