Env

loom-sprint-scaffoldsourcetypescript
Path: loom-sprint-scaffold/loom/src/types/env.tsRelative: loom/src/types/env.tsSubproject: loom-sprint-scaffoldCategory: other
Lines: 13Bytes: 339Imports: 1Exports: 1

Content Preview

  1. import type { DispatchEnvelope } from "./contracts";
  2. /** Worker bindings — must match wrangler.jsonc exactly. */
  3. export interface Env {
  4. DB: D1Database;
  5. TRACES: R2Bucket;
  6. SEMANTIC: VectorizeIndex;
  7. DISPATCH_QUEUE: Queue<DispatchEnvelope>;
  8. ORCHESTRATOR: DurableObjectNamespace;
  9. LOOM_ENV: string;
  10. LOOM_HMAC_SECRET?: string;
  11. }