ProcessWaitBinding import { ProcessWaitBinding } from "destack:process/binding"; Wait binding family. export interface ProcessWaitBinding { waitProcess(handle: ProcessHandle, flags: ProcessWaitFlags): Result; pollProcess(handle: ProcessHandle): Result; waitProcessId(pid: ProcessId, flags: ProcessWaitFlags): Result; } language/library/src/process/binding/wait.ds:76:106 Members waitProcess(handle: ProcessHandle, flags: ProcessWaitFlags): Result Wait for a child process handle. pollProcess(handle: ProcessHandle): Result Poll a child process handle without blocking. waitProcessId(pid: ProcessId, flags: ProcessWaitFlags): Result Wait for a process identifier.