Skip to content

Commit

Permalink
Generated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rhodgkins committed Feb 19, 2025
1 parent 8aeac68 commit 82c34b2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions common/api-review/database.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,10 @@ export function startAt(value?: number | string | boolean | null, key?: string):

// @public
export interface ThenableReference extends DatabaseReference, Pick<Promise<DatabaseReference>, 'then' | 'catch'> {
// (undocumented)
key: string;
// (undocumented)
parent: DatabaseReference;
}

// @public
Expand Down
22 changes: 22 additions & 0 deletions docs-devsite/database.thenablereference.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,25 @@ export declare interface ThenableReference extends DatabaseReference, Pick<Promi
```
<b>Extends:</b> [DatabaseReference](./database.databasereference.md#databasereference_interface)<!-- -->, Pick&lt;Promise&lt;[DatabaseReference](./database.databasereference.md#databasereference_interface)<!-- -->&gt;, 'then' \| 'catch'&gt;
## Properties
| Property | Type | Description |
| --- | --- | --- |
| [key](./database.thenablereference.md#thenablereferencekey) | string | |
| [parent](./database.thenablereference.md#thenablereferenceparent) | [DatabaseReference](./database.databasereference.md#databasereference_interface) | |
## ThenableReference.key
<b>Signature:</b>
```typescript
key: string;
```
## ThenableReference.parent
<b>Signature:</b>
```typescript
parent: DatabaseReference;
```

0 comments on commit 82c34b2

Please sign in to comment.