method
TransactionSQL.distributed
name: string,
Begins a distributed transaction. Alias of beginDistributed.
Referenced types
type TransactionContextCallback<T> = ContextCallback<T, TransactionSQL>
Callback function type for transaction contexts
type ContextCallbackResult<T> = T extends PromiseLike<any>[] ? AwaitPromisesArray<T> : Awaited<T>