IpcPipeBinding import { IpcPipeBinding } from "destack:ipc/binding"; Pipe binding family. export interface IpcPipeBinding { createPipe(flags: PipeFlags): Result; closePipe(pipe: PipeHandle): Result; readPipe(pipe: PipeHandle, buffer: &'a [uint8]): Result; writePipe(pipe: PipeHandle, bytes: &'a readonly [uint8]): Result; } language/library/src/ipc/binding/pipe.ds:25:61 Members createPipe(flags: PipeFlags): Result Create one anonymous pipe pair. closePipe(pipe: PipeHandle): Result Close one pipe endpoint. readPipe(pipe: PipeHandle, buffer: &'a [uint8]): Result Read bytes from one pipe endpoint. writePipe(pipe: PipeHandle, bytes: &'a readonly [uint8]): Result Write bytes to one pipe endpoint.