10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
export * as Config from "./config.js"
|
|
|
|
import { ephemeral, inventory } from "./event.js"
|
|
|
|
const Updated = ephemeral({
|
|
type: "config.updated",
|
|
schema: {},
|
|
})
|
|
|
|
export const Event = { Updated, Definitions: inventory(Updated) }
|