property ClusterSettings.stdio
Usage in Deno
```typescript import { type ClusterSettings } from "node:node__cluster.d.ts"; ```Configures the stdio of forked processes. Because the cluster module relies on IPC to function, this configuration must
contain an `'ipc'` entry. When this option is provided, it overrides `silent`. See [`child_prcess.spawn()`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#child_processspawncommand-args-options)'s
[`stdio`](https://nodejs.org/docs/latest-v22.x/api/child_process.html#optionsstdio).
any[] | undefined