UNPKG

framework

Version:

The (AI) Framework: turnkey, zero-config AI orchestration that wraps a coding-agent CLI (Claude Code) as a black box and takes you from an idea to a running app. Vite for AI.

5 lines 230 B
/** Normalize a {@link ChoicePick} (single id or subset) to a list of picked ids. */ export function pickedIds(picked) { return Array.isArray(picked) ? [...picked] : picked ? [picked] : []; } //# sourceMappingURL=events.js.map