( rows: number, columns: number, stylePool: StylePool, charPool: CharPool, hyperlinkPool: HyperlinkPool, )
| 20 | } |
| 21 | |
| 22 | export function emptyFrame( |
| 23 | rows: number, |
| 24 | columns: number, |
| 25 | stylePool: StylePool, |
| 26 | charPool: CharPool, |
| 27 | hyperlinkPool: HyperlinkPool, |
| 28 | ): Frame { |
| 29 | return { |
| 30 | screen: createScreen(0, 0, stylePool, charPool, hyperlinkPool), |
| 31 | viewport: { width: columns, height: rows }, |
| 32 | cursor: { x: 0, y: 0, visible: true }, |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | export type FlickerReason = 'resize' | 'offscreen' | 'clear' |
| 37 |
no test coverage detected