FailingTransactionState Interface
The state of a transaction that has encountered an error.
Signature
export interface FailingTransactionState extends TransactionFailure
Extends: TransactionFailure
Properties
Property | Type | Description |
---|---|---|
changes | readonly ChangeInternal[] | The applied changes so far. |
steps | readonly ReconciliationChange[] | The editing steps applied so far. |
view | TransactionView | The view reflecting the latest applied change. |
Property Details
changes
The applied changes so far.
Signature
readonly changes: readonly ChangeInternal[];
Type: readonly ChangeInternal[]
steps
The editing steps applied so far.
Signature
readonly steps: readonly ReconciliationChange[];
Type: readonly ReconciliationChange[]
view
The view reflecting the latest applied change.
Signature
readonly view: TransactionView;
Type: TransactionView