Skip to content
Advertisement

How to type a generator function with typscript

I would like to send a value back to the generator function using next which seems to complicate typing this function

JavaScript

DEMO

In my VSCODE I get the following error for Line A

JavaScript

And In Stackblitz/demo I get an error for Line B

JavaScript

So my question is, how can I type the value I provide with next?

Advertisement

Answer

TypeScript 3.6 introduced support for stricter generator typing, including the Generator<Y, R, N> type where the Y type parameter corresponds to the type yielded from the generator function body (the same as the T in Iterator<T>), the R type parameter corresponds to the type returned from the generator function body, and the N type parameter corresponds to the type passed into the next() method of the iterator. Since you are passing string to yield and passing number to next and not returning anything, it looks like you want your generator return type to be something like Generator<string, void, number>:

JavaScript

It is a little weird that a is typed as number but could be undefined, even with the --strictNullChecks compiler option enabled. But that’s what happens if you call x.next() without an input. This is apparently working as intended as per this comment on ms/TS#30790, the implementing pull request. So if you ever plan to do something that would explode if undefined comes out of that yield, like this:

JavaScript

then you should probably manually augment the N type parameter with undefined to be safe:

JavaScript

Playground link to code

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement