Size of the terminal.
| 101 | |
| 102 | |
| 103 | class ConsoleDimensions(NamedTuple): |
| 104 | """Size of the terminal.""" |
| 105 | |
| 106 | width: int |
| 107 | """The width of the console in 'cells'.""" |
| 108 | height: int |
| 109 | """The height of the console in lines.""" |
| 110 | |
| 111 | |
| 112 | @dataclass |
no outgoing calls