@firebase/database 0.13.3-canary.e4eda86ea → 0.13.3-canary.f5426a512
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 +1 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +1 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +1 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.standalone.js.map +1 -1
- package/dist/internal.d.ts +3 -1
- package/dist/node-esm/index.node.esm.js +1 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/api/Reference_impl.d.ts +3 -1
- package/dist/private.d.ts +3 -1
- package/dist/public.d.ts +3 -1
- package/dist/src/api/Reference_impl.d.ts +3 -1
- package/package.json +6 -6
|
@@ -156,7 +156,9 @@ export declare class DataSnapshot {
|
|
|
156
156
|
* @returns true if enumeration was canceled due to your callback returning
|
|
157
157
|
* true.
|
|
158
158
|
*/
|
|
159
|
-
forEach(action: (child: DataSnapshot
|
|
159
|
+
forEach(action: (child: DataSnapshot & {
|
|
160
|
+
key: string;
|
|
161
|
+
}) => boolean | void): boolean;
|
|
160
162
|
/**
|
|
161
163
|
* Returns true if the specified child path has (non-null) data.
|
|
162
164
|
*
|
package/dist/private.d.ts
CHANGED
|
@@ -337,7 +337,9 @@ export declare class DataSnapshot {
|
|
|
337
337
|
* @returns true if enumeration was canceled due to your callback returning
|
|
338
338
|
* true.
|
|
339
339
|
*/
|
|
340
|
-
forEach(action: (child: DataSnapshot
|
|
340
|
+
forEach(action: (child: DataSnapshot & {
|
|
341
|
+
key: string;
|
|
342
|
+
}) => boolean | void): boolean;
|
|
341
343
|
/**
|
|
342
344
|
* Returns true if the specified child path has (non-null) data.
|
|
343
345
|
*
|
package/dist/public.d.ts
CHANGED
|
@@ -159,7 +159,9 @@ export declare class DataSnapshot {
|
|
|
159
159
|
* @returns true if enumeration was canceled due to your callback returning
|
|
160
160
|
* true.
|
|
161
161
|
*/
|
|
162
|
-
forEach(action: (child: DataSnapshot
|
|
162
|
+
forEach(action: (child: DataSnapshot & {
|
|
163
|
+
key: string;
|
|
164
|
+
}) => boolean | void): boolean;
|
|
163
165
|
/**
|
|
164
166
|
* Returns true if the specified child path has (non-null) data.
|
|
165
167
|
*
|
|
@@ -156,7 +156,9 @@ export declare class DataSnapshot {
|
|
|
156
156
|
* @returns true if enumeration was canceled due to your callback returning
|
|
157
157
|
* true.
|
|
158
158
|
*/
|
|
159
|
-
forEach(action: (child: DataSnapshot
|
|
159
|
+
forEach(action: (child: DataSnapshot & {
|
|
160
|
+
key: string;
|
|
161
|
+
}) => boolean | void): boolean;
|
|
160
162
|
/**
|
|
161
163
|
* Returns true if the specified child path has (non-null) data.
|
|
162
164
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@firebase/database",
|
|
3
|
-
"version": "0.13.3-canary.
|
|
3
|
+
"version": "0.13.3-canary.f5426a512",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)",
|
|
6
6
|
"main": "dist/index.node.cjs.js",
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"license": "Apache-2.0",
|
|
46
46
|
"peerDependencies": {},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@firebase/logger": "0.3.3-canary.
|
|
49
|
-
"@firebase/util": "1.6.3-canary.
|
|
50
|
-
"@firebase/component": "0.5.17-canary.
|
|
51
|
-
"@firebase/auth-interop-types": "0.1.6-canary.
|
|
48
|
+
"@firebase/logger": "0.3.3-canary.f5426a512",
|
|
49
|
+
"@firebase/util": "1.6.3-canary.f5426a512",
|
|
50
|
+
"@firebase/component": "0.5.17-canary.f5426a512",
|
|
51
|
+
"@firebase/auth-interop-types": "0.1.6-canary.f5426a512",
|
|
52
52
|
"faye-websocket": "0.11.4",
|
|
53
53
|
"tslib": "^2.1.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"@firebase/app": "0.7.
|
|
56
|
+
"@firebase/app": "0.7.29-canary.f5426a512",
|
|
57
57
|
"rollup": "2.72.1",
|
|
58
58
|
"rollup-plugin-typescript2": "0.31.2",
|
|
59
59
|
"typescript": "4.2.2"
|