tiny-essentials
Version:
Collection of small, essential scripts designed to be used across various projects. These simple utilities are crafted for speed, ease of use, and versatility.
12 lines • 844 B
text/typescript
/**
* Executes a Firebase Realtime Database transaction asynchronously.
* This function uses the `transaction` method of Firebase to apply changes to the database.
* The provided callback is executed with the current value in the database, and the transaction
* is committed based on the result returned from the callback.
*
* @param {Record<string, any>} data - The Firebase database reference object on which the transaction will be performed.
* @param {Function} callback - A function that accepts the current value of the data and returns the updated value.
* @returns {Promise} Resolves with the result of the transaction or rejects with an error if the transaction fails.
*/
export default function transactionDBAsync(data: Record<string, any>, callback: Function): Promise<any>;
//# sourceMappingURL=transactionDBAsync.d.mts.map