@firebase/database 0.13.3-canary.691292b8d → 0.13.3-canary.82a6add13
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.esm5.js
CHANGED
|
@@ -5,7 +5,7 @@ import { __spreadArray, __read, __values, __extends, __awaiter, __generator, __a
|
|
|
5
5
|
import { Logger, LogLevel } from '@firebase/logger';
|
|
6
6
|
|
|
7
7
|
var name = "@firebase/database";
|
|
8
|
-
var version = "0.13.3-canary.
|
|
8
|
+
var version = "0.13.3-canary.82a6add13";
|
|
9
9
|
|
|
10
10
|
/**
|
|
11
11
|
* @license
|
|
@@ -13460,12 +13460,11 @@ function onChildRemoved(query, callback, cancelCallbackOrListenOptions, options)
|
|
|
13460
13460
|
return addEventListener(query, 'child_removed', callback, cancelCallbackOrListenOptions, options);
|
|
13461
13461
|
}
|
|
13462
13462
|
/**
|
|
13463
|
-
* Detaches a callback previously attached with `on()
|
|
13463
|
+
* Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.
|
|
13464
|
+
* Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from
|
|
13465
|
+
* the respective `on*` callbacks.
|
|
13464
13466
|
*
|
|
13465
|
-
* Detach a callback previously attached with `on()`.
|
|
13466
|
-
* called multiple times with the same eventType and callback, the callback
|
|
13467
|
-
* will be called multiple times for each event, and `off()` must be called
|
|
13468
|
-
* multiple times to remove the callback. Calling `off()` on a parent listener
|
|
13467
|
+
* Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener
|
|
13469
13468
|
* will not automatically remove listeners registered on child nodes, `off()`
|
|
13470
13469
|
* must also be called on any child listeners to remove the callback.
|
|
13471
13470
|
*
|