@firebase/database 0.13.3-canary.1703bb31a → 0.13.3-canary.57b00d49f
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.standalone.js
CHANGED
|
@@ -13467,12 +13467,11 @@ function onChildRemoved(query, callback, cancelCallbackOrListenOptions, options)
|
|
|
13467
13467
|
return addEventListener(query, 'child_removed', callback, cancelCallbackOrListenOptions, options);
|
|
13468
13468
|
}
|
|
13469
13469
|
/**
|
|
13470
|
-
* Detaches a callback previously attached with `on()
|
|
13470
|
+
* Detaches a callback previously attached with the corresponding `on*()` (`onValue`, `onChildAdded`) listener.
|
|
13471
|
+
* Note: This is not the recommended way to remove a listener. Instead, please use the returned callback function from
|
|
13472
|
+
* the respective `on*` callbacks.
|
|
13471
13473
|
*
|
|
13472
|
-
* Detach a callback previously attached with `on()`.
|
|
13473
|
-
* called multiple times with the same eventType and callback, the callback
|
|
13474
|
-
* will be called multiple times for each event, and `off()` must be called
|
|
13475
|
-
* multiple times to remove the callback. Calling `off()` on a parent listener
|
|
13474
|
+
* Detach a callback previously attached with `on*()`. Calling `off()` on a parent listener
|
|
13476
13475
|
* will not automatically remove listeners registered on child nodes, `off()`
|
|
13477
13476
|
* must also be called on any child listeners to remove the callback.
|
|
13478
13477
|
*
|