/** @module Interface wasi:cli/exit@0.2.3 **/ /** * Exit the current instance and any linked instances. */ export function exit(status: Result): void; export type Result = { tag: 'ok', val: T } | { tag: 'err', val: E };