( command: Command.Command )
| 239 | |
| 240 | /** @internal */ |
| 241 | export const stream = ( |
| 242 | command: Command.Command |
| 243 | ): Stream.Stream<Uint8Array, PlatformError, CommandExecutor.CommandExecutor> => |
| 244 | Stream.flatMap(commandExecutor.CommandExecutor, (executor) => executor.stream(command)) |
| 245 | |
| 246 | /** @internal */ |
| 247 | export const streamLines = ( |
nothing calls this directly
no test coverage detected
searching dependent graphs…