-
Notifications
You must be signed in to change notification settings - Fork 439
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
ReadableStream.from() method? #1691
Comments
I think you meant
Correct, this is still missing browser support. At the moment, only 1 browser engine (Firefox's Gecko engine) has implemented Usually, I would suggest to add a type definition to your own code for now. Unfortunately, that doesn't work in this case, since you can't override the type of
So for now, you have to add an explicit cast wherever you want to use the extra methods... (playground) type ReadableStreamExt = (typeof ReadableStream) & {
from<R>(asyncIterable: Iterable<R> | AsyncIterable<R>): ReadableStream<R>;
};
// 😬
(ReadableStream as ReadableStreamExt).from(['a', 'b']); You can also go click the "+1" button on the Chromium issue, so maybe someone will pick it up. 😁 |
Hello @karlhorky, This method has not been implemented yet because it isn't widely adopted. At least two browser engines must support it before it can be considered for implementation. |
Hi, first of all, thanks for your work on these type declarations, they are invaluable for working with web standards APIs.
It seems as if the following is not yet supported in TS 5.3.3 (also fails in Beta and Nightly):
Maybe a similar PR is needed to update the types to the WebIDL Streams spec like @MattiasBuelens did in 2020 in #890?
Or is this not supported yet because only 3 runtimes (Firefox, Deno and Node.js) support this?
I can also re-submit this in https://github.com/microsoft/typescript if that makes more sense.
The text was updated successfully, but these errors were encountered: