Skip to main content

IMergeTreeSegmentDelta Interface

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

export interface IMergeTreeSegmentDelta

Properties

Property Alerts Modifiers Type Description
propertyDeltas Alpha optional PropertySet A property set containing changes to properties on this segment.
segment Alpha ISegment The segment this delta affected.

Property Details

propertyDeltas

A property set containing changes to properties on this segment.

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

propertyDeltas?: PropertySet;

Type: PropertySet

Remarks

  • Deleting a property is represented using null as the value.

Example

An annotation change which deleted the property "foo" and set "bar" to 5 would be represented as: { foo: null, bar: 5 }.

segment

The segment this delta affected.

WARNING: This API is provided as an alpha preview and may change without notice. Use at your own risk.

Signature

segment: ISegment;

Type: ISegment