Type alias TransactionDescription

TransactionDescription: {
    id: string;
    state: "running" | "committed" | "aborted";
}

Description of a transaction in a list of transactions.

See also TransactionInfo.

Type declaration

  • id: string

    Unique identifier of the transaction.

  • state: "running" | "committed" | "aborted"

    Status (or "state") of the transaction.