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
118118
119119-- | The standard output stream. Note that this stream cannot be closed; calling
120120-- | `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 )
122122stdout = process.stdout
123123
124124-- | The standard error stream. Note that this stream cannot be closed; calling
125125-- | `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 )
127127stderr = process.stderr
128128
129129-- | Check whether the process is being run inside a TTY context
You can’t perform that action at this time.
0 commit comments