Skip to content

Commit 82c34b2

Browse files
committed
Generated docs
1 parent 8aeac68 commit 82c34b2

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

common/api-review/database.api.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ export function startAt(value?: number | string | boolean | null, key?: string):
228228

229229
// @public
230230
export interface ThenableReference extends DatabaseReference, Pick<Promise<DatabaseReference>, 'then' | 'catch'> {
231+
// (undocumented)
232+
key: string;
233+
// (undocumented)
234+
parent: DatabaseReference;
231235
}
232236

233237
// @public

docs-devsite/database.thenablereference.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,25 @@ export declare interface ThenableReference extends DatabaseReference, Pick<Promi
1919
```
2020
<b>Extends:</b> [DatabaseReference](./database.databasereference.md#databasereference_interface)<!-- -->, Pick&lt;Promise&lt;[DatabaseReference](./database.databasereference.md#databasereference_interface)<!-- -->&gt;, 'then' \| 'catch'&gt;
2121
22+
## Properties
23+
24+
| Property | Type | Description |
25+
| --- | --- | --- |
26+
| [key](./database.thenablereference.md#thenablereferencekey) | string | |
27+
| [parent](./database.thenablereference.md#thenablereferenceparent) | [DatabaseReference](./database.databasereference.md#databasereference_interface) | |
28+
29+
## ThenableReference.key
30+
31+
<b>Signature:</b>
32+
33+
```typescript
34+
key: string;
35+
```
36+
37+
## ThenableReference.parent
38+
39+
<b>Signature:</b>
40+
41+
```typescript
42+
parent: DatabaseReference;
43+
```

0 commit comments

Comments
 (0)