Type alias AsyncTransactionResult<TValue>Experimental

AsyncTransactionResult<TValue>: {
    waitForCompletion(): PromiseResult<TValue, TransactionError>;
}

An object that represents the result of an async transaction.

It allows to wait for the transaction until it's full completion.

this interface is not yet stable and might change in the future.

Type Parameters

  • TValue

Type declaration