Types
Path:
loom-sprint-scaffold/loom/src/dispatcher/core/types.tsRelative: loom/src/dispatcher/core/types.tsSubproject: loom-sprint-scaffoldCategory: otherLines: 100Bytes: 3,297Imports: 1Exports: 12
Content Preview
- /**
- * Injectable interfaces for the Loop 2 dispatcher core.
- *
- * Every dependency is an interface so tests inject fakes.
- * Worker-side glue (src/dispatcher/index.ts) wires real D1 / Queue / fetch.
- */
- import type {
- DispatchEnvelope,
- GoalId,
- StageId,
- VarietyClass,
- HarnessProfile,
- ModeRegistryRow,
- Sha256Hex,
- } from "../../types";
- // Re-export the D1 row shape used across all dispatcher modules.
- export type { ModeRegistryRow };
- // ── Registry store (D1-backed mode_registry) ────