Env
Path:
_archive/loom-stale-pre-sprint-snapshot/src/types/env.tsRelative: loom-stale-pre-sprint-snapshot/src/types/env.tsSubproject: _archiveCategory: archivedLines: 15Bytes: 447Imports: 1Exports: 1
Content Preview
- import type { DispatchEnvelope } from "./contracts";
- /** Worker bindings — must match wrangler.jsonc exactly. */
- export interface Env {
- DB: D1Database;
- TRACES: R2Bucket;
- SEMANTIC: VectorizeIndex;
- DISPATCH_QUEUE: Queue<DispatchEnvelope>;
- ORCHESTRATOR: DurableObjectNamespace;
- LOOM_ENV: string;
- /** Secrets — set via `wrangler secret put` (edge) or .dev.vars (local). */
- ANTHROPIC_API_KEY: string;
- LOOM_HMAC_SECRET: string;
- }