mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-20 19:03:32 +00:00
13 lines
279 B
TypeScript
13 lines
279 B
TypeScript
export * as IdeEvent from "./ide-event.js"
|
|
|
|
import { Schema } from "effect"
|
|
import { Event } from "./event.js"
|
|
|
|
export const Installed = Event.ephemeral({
|
|
type: "ide.installed",
|
|
schema: {
|
|
ide: Schema.String,
|
|
},
|
|
})
|
|
|
|
export const Definitions = Event.inventory(Installed)
|