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.
16 lines • 855 B
JavaScript
/**
* The types the dashboard reads the daemon's answers as.
*
* Not a library API: nothing imports this package by name, and the browser gets its *values* from
* `client.ts` (the node-free entry) and its data over `POST /_rpc/<name>`. What is left here is the
* vocabulary of those answers — one import site for a browser file that would otherwise reach into
* two dozen modules to name what an RPC returns.
*
* Type-only on purpose. A value re-exported here would pull the module that defines it into the
* browser bundle, which is the failure `client.ts` exists to prevent; `export type` erases at build.
*
* Every name below is imported by a file under `dashboard/`. That is the whole rule: this file
* ends where its consumers end, so a name nothing renders cannot quietly live on in it.
*/
export {};
//# sourceMappingURL=index.js.map