EditingResultBase Interface
Basic result of applying a transaction.
Signature
export interface EditingResultBase
Properties
Property | Type | Description |
---|---|---|
before | RevisionView | The revision preceding the transaction. |
changes | readonly ChangeInternal[] | The valid changes applied as part of the transaction. |
status | EditStatus | The final status of the transaction. |
steps | readonly ReconciliationChange[] | The editing steps applied as part of the transaction. |
Property Details
before
The revision preceding the transaction.
Signature
readonly before: RevisionView;
Type: RevisionView
changes
The valid changes applied as part of the transaction.
Signature
readonly changes: readonly ChangeInternal[];
Type: readonly ChangeInternal[]
status
The final status of the transaction.
Signature
readonly status: EditStatus;
Type: EditStatus
steps
The editing steps applied as part of the transaction.
Signature
readonly steps: readonly ReconciliationChange[];
Type: readonly ReconciliationChange[]