Package

io.scalajs.nodejs

tty

Permalink

package tty

tty package object

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. tty
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class ReadStream extends Socket

    Permalink

    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
    @RawJSType() @native() @JSImport( "tty" , "ReadStream" )
    See also

    https://nodejs.org/api/tty.html

  2. trait TTY extends Object

    Permalink

    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
    @RawJSType() @native()
    See also

    https://nodejs.org/api/tty.html

  3. class WriteStream extends Socket

    Permalink

    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
    @RawJSType() @native() @JSImport( "tty" , "WriteStream" )
    Since

    0.5.8

    See also

    https://nodejs.org/api/tty.html

  4. implicit final class WriteStreamEvents extends AnyVal

    Permalink

    Write Stream Events

Value Members

  1. object TTY extends Object with TTY

    Permalink

    TTY Singleton

    TTY Singleton

    Annotations
    @native() @JSImport( "tty" , JSImport.Namespace )

Inherited from AnyRef

Inherited from Any

Ungrouped