Skip to content

Commit

Permalink
Fix typing of web streams (#1043)
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky authored May 9, 2024
1 parent 9693cba commit 6f4941e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions test-d/stdio/option/readable-stream.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {ReadableStream} from 'node:stream/web';
import {expectError, expectAssignable, expectNotAssignable} from 'tsd';
import {
execa,
Expand Down
1 change: 1 addition & 0 deletions test-d/stdio/option/writable-stream.test-d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import {WritableStream} from 'node:stream/web';
import {expectError, expectAssignable, expectNotAssignable} from 'tsd';
import {
execa,
Expand Down
1 change: 1 addition & 0 deletions types/stdio/type.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type {Readable, Writable} from 'node:stream';
import type {ReadableStream, WritableStream} from 'node:stream/web';
import type {
Not,
And,
Expand Down

0 comments on commit 6f4941e

Please sign in to comment.