gespenst API - v0.1.0
    Preparing search index...

    Interface TerminalTransport

    Bidirectional byte streams connecting a terminal to a PTY or remote shell.

    interface TerminalTransport {
        readable: ReadableStream<Uint8Array<ArrayBufferLike>>;
        writable: WritableStream<Uint8Array<ArrayBufferLike>>;
    }
    Index
    readable: ReadableStream<Uint8Array<ArrayBufferLike>>

    Bytes received from a PTY or remote shell and written into the terminal.

    writable: WritableStream<Uint8Array<ArrayBufferLike>>

    Bytes generated by terminal input and written back to the PTY or remote shell.