File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -118,12 +118,12 @@ stdin = process.stdin
118
118
119
119
-- | The standard output stream. Note that this stream cannot be closed; calling
120
120
-- | `end` will result in an exception being thrown.
121
- stdout :: forall eff . Writable () (console :: CONSOLE | eff )
121
+ stdout :: forall eff . Writable () (console :: CONSOLE , err :: EXCEPTION | eff )
122
122
stdout = process.stdout
123
123
124
124
-- | The standard error stream. Note that this stream cannot be closed; calling
125
125
-- | `end` will result in an exception being thrown.
126
- stderr :: forall eff . Writable () (console :: CONSOLE | eff )
126
+ stderr :: forall eff . Writable () (console :: CONSOLE , err :: EXCEPTION | eff )
127
127
stderr = process.stderr
128
128
129
129
-- | Check whether the process is being run inside a TTY context
You can’t perform that action at this time.
0 commit comments