We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5c5b0d commit 0380430Copy full SHA for 0380430
1 file changed
src/Node/Process.purs
@@ -118,12 +118,12 @@ stdin = process.stdin
118
119
-- | The standard output stream. Note that this stream cannot be closed; calling
120
-- | `end` will result in an exception being thrown.
121
-stdout :: forall eff. Writable () (console :: CONSOLE | eff)
+stdout :: forall eff. Writable () (console :: CONSOLE, err :: EXCEPTION | eff)
122
stdout = process.stdout
123
124
-- | The standard error stream. Note that this stream cannot be closed; calling
125
126
-stderr :: forall eff. Writable () (console :: CONSOLE | eff)
+stderr :: forall eff. Writable () (console :: CONSOLE, err :: EXCEPTION | eff)
127
stderr = process.stderr
128
129
-- | Check whether the process is being run inside a TTY context
0 commit comments