You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The types for Process.stdout and Process.stderr are both listed as TTYWriteStream, and the type for Process.stdin is TTYReadStream. This isn't accurate: according to the Node docs, the only consistent guarantees are that stdout and stderr are Writeables and that stdin is a Readable. In practice, they're only TTY*Streams if a terminal is attached.
The text was updated successfully, but these errors were encountered:
jerivas
added a commit
to oddbird/dart-sass
that referenced
this issue
Mar 7, 2023
The types for
Process.stdout
andProcess.stderr
are both listed asTTYWriteStream
, and the type forProcess.stdin
isTTYReadStream
. This isn't accurate: according to the Node docs, the only consistent guarantees are thatstdout
andstderr
areWriteable
s and thatstdin
is aReadable
. In practice, they're onlyTTY*Stream
s if a terminal is attached.The text was updated successfully, but these errors were encountered: