(range: Range)
| 19 | export type SerializedMarks = { [decoratedCharacter: string]: RangePlainObject }; |
| 20 | |
| 21 | export function rangeToPlainObject(range: Range): RangePlainObject { |
| 22 | return { |
| 23 | start: positionToPlainObject(range.start), |
| 24 | end: positionToPlainObject(range.end), |
| 25 | }; |
| 26 | } |
| 27 | |
| 28 | export function selectionToPlainObject( |
| 29 | selection: Selection |