Writer is an expanded io.Writer interface with a file descriptor.
| 14 | |
| 15 | // Writer is an expanded io.Writer interface with a file descriptor. |
| 16 | type Writer interface { |
| 17 | io.Writer |
| 18 | Fd() uintptr |
| 19 | } |
| 20 | |
| 21 | // SetTarget sets to output target of the default curser to the |
| 22 | // provided cursor.Writer (wrapping io.Writer). |