Skip to content

Commit

Permalink
Add generated API file.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuchenshi committed Apr 15, 2021
1 parent e958cec commit 3b35faa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion common/api-review/database.api.md
Expand Up @@ -5,6 +5,7 @@
```ts

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

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

// @public
export function useDatabaseEmulator(db: FirebaseDatabase, host: string, port: number): void;
export function useDatabaseEmulator(db: FirebaseDatabase, host: string, port: number, options?: {
mockUserToken?: Partial<FirebaseIdToken>;
}): void;


```

0 comments on commit 3b35faa

Please sign in to comment.