package tty
tty package object
- Alphabetic
- By Inheritance
- tty
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class ReadStream extends Socket
The tty.ReadStream class is a subclass of net.Socket that represents the readable side of a TTY.
The tty.ReadStream class is a subclass of net.Socket that represents the readable side of a TTY. In normal circumstances process.stdin will be the only tty.ReadStream instance in a Node.js process and there should be no reason to create additional instances.
- Annotations
- @JSType() @native() @JSImport("tty", "ReadStream")
- See also
https://nodejs.org/api/tty.html
- trait TTY extends Object
The tty module provides the tty.ReadStream and tty.WriteStream classes.
The tty module provides the tty.ReadStream and tty.WriteStream classes. In most cases, it will not be necessary or possible to use this module directly.
- Annotations
- @JSType() @native()
- See also
https://nodejs.org/api/tty.html
- class WriteStream extends Socket
The tty.WriteStream class is a subclass of net.Socket that represents the writable side of a TTY.
The tty.WriteStream class is a subclass of net.Socket that represents the writable side of a TTY. In normal circumstances, process.stdout and process.stderr will be the only tty.WriteStream instances created for a Node.js process and there should be no reason to create additional instances.
- Annotations
- @JSType() @native() @JSImport("tty", "WriteStream")
- Since
0.5.8
- See also
https://nodejs.org/api/tty.html
- implicit final class WriteStreamExtensions[W <: WriteStream] extends AnyVal
Write Stream Events