Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated type of action parameter for DataSnapshot#forEach #6541

Merged
merged 6 commits into from
Jul 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Undid FirebaseService change
maneesht committed Aug 19, 2022
commit b132ae5ce898b78ae63e0378cea0411647154603
3 changes: 1 addition & 2 deletions common/api-review/database.api.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@

import { EmulatorMockTokenOptions } from '@firebase/util';
import { FirebaseApp } from '@firebase/app';
import { _FirebaseService } from '@firebase/app';

// @public
export function child(parent: DatabaseReference, path: string): DatabaseReference;
@@ -17,7 +16,7 @@ export function connectDatabaseEmulator(db: Database, host: string, port: number
}): void;

// @public
export class Database implements _FirebaseService {
export class Database {
readonly app: FirebaseApp;
readonly 'type' = "database";
}