catalog.ts 213 B

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