1 | export type LeafEdge = 'start' | 'end';
|
2 | export type MaximizeMode = RangeMode | 'all';
|
3 | export type MoveUnit = 'offset' | 'character' | 'word' | 'line';
|
4 | export type RangeDirection = TextDirection | 'outward' | 'inward';
|
5 | export type RangeMode = 'highest' | 'lowest';
|
6 | export type SelectionEdge = 'anchor' | 'focus' | 'start' | 'end';
|
7 | export type SelectionMode = 'all' | 'highest' | 'lowest';
|
8 | export type TextDirection = 'forward' | 'backward';
|
9 | export type TextUnit = 'character' | 'word' | 'line' | 'block';
|
10 | export type TextUnitAdjustment = TextUnit | 'offset';
|
11 |
|
\ | No newline at end of file |