IoError import { IoError } from "destack:error"; Portable I/O failure. export struct IoError { kind: IoErrorKind; code: int32; message: string; cause: Dynamic; } language/library/src/error/io.ds:53:65 Members kind: IoErrorKind The failure kind. code: int32 Platform-specific error code. message: string User-facing detail. cause: Dynamic Underlying cause.