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 %}
A type for the resolve value of runTransaction().
Signature:
export declare class TransactionResult
Property | Modifiers | Type | Description |
---|---|---|---|
committed | boolean | Whether the transaction was successfully committed. | |
snapshot | DataSnapshot | The resulting data snapshot. |
Method | Modifiers | Description |
---|---|---|
toJSON() | Returns a JSON-serializable representation of this object. |
Whether the transaction was successfully committed.
Signature:
readonly committed: boolean;
The resulting data snapshot.
Signature:
readonly snapshot: DataSnapshot;
Returns a JSON-serializable representation of this object.
Signature:
toJSON(): object;
Returns:
object