Skip to main content
Version: v1

ISequenceDeltaRange Interface

A range that has changed corresponding to a segment modification.

Signature

export interface ISequenceDeltaRange<TOperation extends MergeTreeDeltaOperationTypes = MergeTreeDeltaOperationTypes>

Type Parameters

Parameter Constraint Default Description
TOperation MergeTreeDeltaOperationTypes MergeTreeDeltaOperationTypes

Properties

Property Type Description
operation TOperation
position number The index of the start of the range.
propertyDeltas PropertySet
segment ISegment The segment that corresponds to the range.

Property Details

operation

Signature

operation: TOperation;

Type: TOperation

position

The index of the start of the range.

Signature

position: number;

Type: number

propertyDeltas

Signature

propertyDeltas: PropertySet;

Type: PropertySet

segment

The segment that corresponds to the range.

Signature

segment: ISegment;

Type: ISegment