# ProcessStdioPipe

`import { ProcessStdioPipe } from "destack:process/binding";`

Connect a standard stream to one pipe endpoint.

```ds title="ProcessStdioPipe"
export struct ProcessStdioPipe {
    kind: "pipe";
    pipe: PipeHandle;
}
```

[language/library/src/process/binding/spawn.ds:36:41](https://github.com/destack-sh/destack/blob/main/language/library/src/process/binding/spawn.ds#L36-L41)

## Members

### `kind: "pipe"`

Discriminator for this stdio variant.

### `pipe: PipeHandle`

Pipe endpoint used by the child.
