Skip to content

Commit

Permalink
Update core.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus authored Jul 7, 2024
1 parent 4e20669 commit 47dca33
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import type {ReadableStream as WebReadableStream} from 'node:stream/web';
import type {ITokenizer} from 'strtok3';

/**
* Either the Node.js ReadableStream or the `lib.dom.d.ts` ReadableStream
* Related issue: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/60377
*/
Either the Node.js ReadableStream or the `lib.dom.d.ts` ReadableStream.
Related issue: https://github.com/DefinitelyTyped/DefinitelyTyped/pull/60377
*/
export type AnyWebReadableStream<G> = WebReadableStream<G> | ReadableStream<G>;

export type FileExtension =
Expand Down

0 comments on commit 47dca33

Please sign in to comment.