| 1 | export interface WriteStreams { |
| 2 | stdout: (txt: string) => void; |
| 3 | memoStdout: (txt: string) => void; |
| 4 | stderr: (txt: string) => void; |
| 5 | flush: () => void; |
| 6 | } |
| 7 | |
| 8 | abstract class AbstractWriteStreams implements WriteStreams { |
| 9 | abstract stdout (txt: string): void; |
nothing calls this directly
no outgoing calls
no test coverage detected