ISerializedInterval Interface
Serialized object representation of an interval. This representation is used for ops that create or change intervals.
This API is provided for existing users, but is not recommended for new users.
To use, import via @fluidframework/sequence/legacy.
For more information about our API support guarantees, see here.
Signature
export interface ISerializedInterval
Properties
| Property | Alerts | Modifiers | Type | Description |
|---|---|---|---|---|
| end | Beta | number | "start" | "end" | End position of the interval | |
| endSide | Beta | optional | Side | |
| intervalType | Beta | IntervalType | Interval type to create | |
| properties | Beta | optional | PropertySet | Any properties the interval has |
| sequenceNumber | Beta | number | Sequence number at which start and end should be interpreted | |
| start | Beta | number | "start" | "end" | Start position of the interval | |
| startSide | Beta | optional | Side | |
| stickiness | Beta | optional | IntervalStickiness | The stickiness of this interval |
Property Details
end
End position of the interval
This API is provided for existing users, but is not recommended for new users.
For more information about our API support guarantees, see here.
Signature
end: number | "start" | "end";
Type: number | "start" | "end"