TtyPtyBinding import { TtyPtyBinding } from "destack:tty/binding"; Pty binding family. export interface TtyPtyBinding { openPty(options: &'a readonly PtyOpenOptions): Result; readPty(pty: PtyHandle, buffer: &'a [uint8]): Result; writePty(pty: PtyHandle, buffer: &'a readonly [uint8]): Result; closePty(pty: PtyHandle): Result; } language/library/src/tty/binding/pty.ds:25:61 Members openPty(options: &'a readonly PtyOpenOptions): Result Open one pseudo terminal pair. readPty(pty: PtyHandle, buffer: &'a [uint8]): Result Read bytes from one pseudo terminal controller. writePty(pty: PtyHandle, buffer: &'a readonly [uint8]): Result Write bytes to one pseudo terminal controller. closePty(pty: PtyHandle): Result Close one pseudo terminal controller.