-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specifying TReturn and TNext for AsyncIterableIterator and AsyncIterable #36723
Conversation
@typescript-bot test this |
Heya @DanielRosenwasser, I've started to run the extended test suite on this PR at 3b69bf2. You can monitor the build here. It should now contribute to this PR's status checks. |
Heya @DanielRosenwasser, I've started to run the parallelized Definitely Typed test suite on this PR at 3b69bf2. You can monitor the build here. It should now contribute to this PR's status checks. |
Heya @DanielRosenwasser, I've started to run the parallelized community code test suite on this PR at 3b69bf2. You can monitor the build here. It should now contribute to this PR's status checks. |
The user suite test run you requested has finished and failed. I've opened a PR with the baseline diff from master. |
3b69bf2
to
aa0f332
Compare
@typescript-bot test this |
What about Also, do note that this was originally rejected in #30790 (comment) by @rbuckton. |
At one point in #30790 I was using We also had issues with the fact that we were conflating I am considering my concerns about adding |
Unfortunately, we never finished reviewing this PR. It is pretty old now, so I'm going to close it to reduce the number of open PRs. |
Partially fixes #33932 by giving a way to provide a better type than
any
for TReturn. Implementation is simply adding and plumbing theTReturn
andTNext
parameters for both AsyncIterableIterator and AsyncIterable, and updating baselines.