# GeneratorResumeNext

`import { GeneratorResumeNext } from "destack:async";`

Continue the body with one sent value.

```ds title="GeneratorResumeNext"
export struct GeneratorResumeNext<N> {
    kind: "next";
    value: N | undefined;
}
```

[language/library/src/async/generator.ds:65:71](https://github.com/destack-sh/destack/blob/main/language/library/src/async/generator.ds#L65-L71)

## Members

### `kind: "next"`

The request tag.

### `value: N | undefined`

Value sent into the body.
