UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

9 lines (8 loc) 139 B
export type SafeResult<OUTPUT> = { ok: true; output: OUTPUT; } | { ok: false; isAborted?: boolean; error?: unknown; };