( command: Command.Command )
| 233 | |
| 234 | /** @internal */ |
| 235 | export const start = ( |
| 236 | command: Command.Command |
| 237 | ): Effect.Effect<CommandExecutor.Process, PlatformError, CommandExecutor.CommandExecutor | Scope> => |
| 238 | Effect.flatMap(commandExecutor.CommandExecutor, (executor) => executor.start(command)) |
| 239 | |
| 240 | /** @internal */ |
| 241 | export const stream = ( |
no test coverage detected