Skip to content

Commit c353757

Browse files
committed
Ran yarn build to generate API md
1 parent d01c870 commit c353757

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

common/api-review/database.api.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ export class DataSnapshot {
3333
child(path: string): DataSnapshot;
3434
exists(): boolean;
3535
exportVal(): any;
36-
forEach(action: (child: DataSnapshot) => boolean | void): boolean;
36+
forEach(action: (child: DataSnapshot & {
37+
key: string;
38+
}) => boolean | void): boolean;
3739
hasChild(path: string): boolean;
3840
hasChildren(): boolean;
3941
get key(): string | null;

0 commit comments

Comments
 (0)