(text: string)
| 34 | | { readonly type: "done" }; |
| 35 | |
| 36 | const out = (text: string) => process.stdout.write(text); |
| 37 | |
| 38 | // The PTY would otherwise echo every incoming event line into the recording. |
| 39 | if (process.stdin.isTTY) process.stdin.setRawMode(true); |
no outgoing calls
no test coverage detected