Skip to main content
Version: v1

SucceedingTransactionState Interface

The state of a transaction that has not encountered an error.

Signature

export interface SucceedingTransactionState

Properties

Property Type Description
changes readonly ChangeInternal[] The applied changes so far.
status EditStatus.Applied The current status of the transaction.
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[]

status

The current status of the transaction.

Signature

readonly status: EditStatus.Applied;

Type: EditStatus.Applied

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