( ink: MountedInkProbe | undefined, )
| 14 | } as const |
| 15 | |
| 16 | export function readMountedScreenText( |
| 17 | ink: MountedInkProbe | undefined, |
| 18 | ): string { |
| 19 | return ink ? readScreenText(ink.frontFrame.screen) : '' |
| 20 | } |
| 21 | |
| 22 | export function readVisibleRows(screenText: string): string[] { |
| 23 | return screenText |
no test coverage detected