Skip to content

Commit 5fd82c7

Browse files
committed
Add generated API file.
1 parent 21374c2 commit 5fd82c7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

common/api-review/database.api.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
```ts
66

77
import { FirebaseApp } from '@firebase/app';
8+
import { FirebaseIdToken } from '@firebase/util';
89

910
// @public (undocumented)
1011
export function child(parent: Reference, path: string): Reference;
@@ -229,7 +230,9 @@ export type Unsubscribe = () => void;
229230
export function update(ref: Reference, values: object): Promise<void>;
230231

231232
// @public
232-
export function useDatabaseEmulator(db: FirebaseDatabase, host: string, port: number): void;
233+
export function useDatabaseEmulator(db: FirebaseDatabase, host: string, port: number, options?: {
234+
mockUserToken?: Partial<FirebaseIdToken>;
235+
}): void;
233236

234237

235238
```

0 commit comments

Comments
 (0)