Skip to main content
Version: v1

ReconciliationEdit Interface

An edit in the ReconciliationPath.

Signature

export interface ReconciliationEdit

Properties

Property Type Description
after TreeView The state after the edit was applied.
before TreeView The state before the edit was applied.
length number The number of changes in the edit.

Index Signatures

IndexSignature Description
readonly [index: number]: ReconciliationChange Allows access to change information.

Property Details

after

The state after the edit was applied.

Signature

readonly after: TreeView;

Type: TreeView

before

The state before the edit was applied.

Signature

readonly before: TreeView;

Type: TreeView

length

The number of changes in the edit.

Signature

readonly length: number;

Type: number

Index Signature Details

readonly [index: number]: ReconciliationChange

Allows access to change information.

Signature

readonly [index: number]: ReconciliationChange;