14 lines
270 B
TypeScript
14 lines
270 B
TypeScript
|
|
export * as IdeEvent from "./ide-event"
|
||
|
|
|
||
|
|
import { Schema } from "effect"
|
||
|
|
import { Event } from "./event"
|
||
|
|
|
||
|
|
export const Installed = Event.define({
|
||
|
|
type: "ide.installed",
|
||
|
|
schema: {
|
||
|
|
ide: Schema.String,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
export const Definitions = Event.inventory(Installed)
|