We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9efdd3 commit f3afac4Copy full SHA for f3afac4
src/providers/database.ts
@@ -207,7 +207,7 @@ export class DeltaSnapshot implements firebase.database.DataSnapshot {
207
}
208
209
// TODO(inlined) what is this boolean for?
210
- forEach(action: (a: DeltaSnapshot) => boolean): boolean {
+ forEach(action: (a: DeltaSnapshot) => void): boolean {
211
let val = this.val();
212
if (_.isPlainObject(val)) {
213
_.keys(val).forEach(key => action(this.child(key)));
0 commit comments