Interface TransactionRollbackEvent

Event emitted when a transaction is rolled back.

interface TransactionRollbackEvent {
    type: "transaction:rollback";
    id: string;
    error?: Error;
    timestamp: Date;
}

Properties

Properties

type
id: string
error?: Error
timestamp: Date