// GENERATED CODE! DO NOT MODIFY BY HAND! // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. /** * Write stdin bytes to a running `process/spawn` session, close stdin, or * both. */ export type ProcessWriteStdinParams = { /** * Client-supplied, connection-scoped `processHandle` from `process/spawn`. */ processHandle: string, /** * Optional base64-encoded stdin bytes to write. */ deltaBase64?: string | null, /** * Close stdin after writing `deltaBase64`, if present. */ closeStdin?: boolean, };