CursorPositionMsg is a message that represents the terminal cursor position.
| 5 | |
| 6 | // CursorPositionMsg is a message that represents the terminal cursor position. |
| 7 | type CursorPositionMsg struct { |
| 8 | X, Y int |
| 9 | } |
| 10 | |
| 11 | // CursorShape represents a terminal cursor shape. |
| 12 | type CursorShape int |