ContainerProcess
class ContainerProcess {
stdin: ModalWriteStream<R>;
stdout: ModalReadStream<R>;
stderr: ModalReadStream<R>;
}wait
async wait(): Promise<number>Wait for process completion and return the exit code.
class ContainerProcess {
stdin: ModalWriteStream<R>;
stdout: ModalReadStream<R>;
stderr: ModalReadStream<R>;
}async wait(): Promise<number>Wait for process completion and return the exit code.