Back to Firebase Js Sdk

ThenableReference interface

docs-devsite/database.thenablereference.md

12.12.11.4 KB
Original Source

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

ThenableReference interface

A Promise that can also act as a DatabaseReference when returned by push()<!-- -->. The reference is available immediately and the Promise resolves as the write to the backend completes.

<b>Signature:</b>

typescript
export declare interface ThenableReference extends DatabaseReference, Pick<Promise<DatabaseReference>, 'then' | 'catch'> 

<b>Extends:</b> DatabaseReference<!-- -->, Pick<Promise<DatabaseReference<!-- -->>, 'then' | 'catch'>

Properties

PropertyTypeDescription
keystring
parentDatabaseReference

ThenableReference.key

<b>Signature:</b>

typescript
key: string;

ThenableReference.parent

<b>Signature:</b>

typescript
parent: DatabaseReference;