| 14 | }; |
| 15 | |
| 16 | export interface CursorOverlayState<TCursorData extends Record<string, unknown>> |
| 17 | extends CursorState<TCursorData> { |
| 18 | caretPosition: CaretPosition | null; |
| 19 | selectionRects: SelectionRect[]; |
| 20 | } |
| 21 | |
| 22 | export type CursorState<TCursorData extends UnknownObject = UnknownObject> = { |
| 23 | selection: TRange | null; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…