# GeneratorResumeFinish

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

Run the body's return path with one completion value.

```ds title="GeneratorResumeFinish"
export struct GeneratorResumeFinish<R> {
    kind: "finish";
    value: R;
}
```

[language/library/src/async/generator.ds:74:80](https://github.com/destack-sh/destack/blob/main/language/library/src/async/generator.ds#L74-L80)

## Members

### `kind: "finish"`

The request tag.

### `value: R`

Value carried to the body return.
