Skip to content

Commit 1851b2e

Browse files
committed
Update API reports
1 parent d3925a1 commit 1851b2e

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

common/api-review/app-check-exp.api.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,4 @@ export function setTokenAutoRefreshEnabled(appCheckInstance: AppCheck, isTokenAu
8787
export { Unsubscribe }
8888

8989

90-
// (No @packageDocumentation comment for this package)
91-
9290
```

common/api-review/database.api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ import { FirebaseApp } from '@firebase/app';
1010
// @public
1111
export function child(parent: DatabaseReference, path: string): DatabaseReference;
1212

13+
// @public
14+
export function connectDatabaseEmulator(db: Database, host: string, port: number, options?: {
15+
mockUserToken?: EmulatorMockTokenOptions;
16+
}): void;
17+
1318
// @public
1419
export class Database {
1520
readonly app: FirebaseApp;
@@ -23,11 +28,6 @@ export interface DatabaseReference extends Query {
2328
readonly root: DatabaseReference;
2429
}
2530

26-
// @public
27-
export function connectDatabaseEmulator(db: FirebaseDatabase, host: string, port: number, options?: {
28-
mockUserToken?: EmulatorMockTokenOptions;
29-
}): void;
30-
3131
// @public
3232
export class DataSnapshot {
3333
child(path: string): DataSnapshot;

0 commit comments

Comments
 (0)