catalog.ts 225 B

123456
  1. export * as Catalog from "./catalog.js"
  2. import { ephemeral, inventory } from "./event.js"
  3. const Updated = ephemeral({ type: "catalog.updated", schema: {} })
  4. export const Event = { Updated, Definitions: inventory(Updated) }