Skip to main content
Version: v1

ReconciliationPath Interface

The path of edits from the revision view where a change was meant to have been applied to the view where the edit that contains the change is actually applied. The path only contains edits that were successfully applied. This path is always empty for a change that has no concurrent edits.

Signature

export interface ReconciliationPath

Properties

Property Type Description
length number The number of edits in the path.

Index Signatures

IndexSignature Description
readonly [index: number]: ReconciliationEdit Allows access to edit information.

Property Details

length

The number of edits in the path.

Signature

readonly length: number;

Type: number

Index Signature Details

readonly [index: number]: ReconciliationEdit

Allows access to edit information.

Signature

readonly [index: number]: ReconciliationEdit;