| 163 | |
| 164 | /** Cell data */ |
| 165 | export interface ICellData extends IAttributeData { |
| 166 | content: number; |
| 167 | combinedData: string; |
| 168 | isCombined(): number; |
| 169 | getWidth(): number; |
| 170 | getChars(): string; |
| 171 | getCode(): number; |
| 172 | setFromCharData(value: CharData): void; |
| 173 | getAsCharData(): CharData; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Interface for a line in the terminal buffer. |
no outgoing calls
no test coverage detected