7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
export * as LspEvent from "./lsp-event.js"
|
|
|
|
import { Event } from "./event.js"
|
|
|
|
export const Updated = Event.ephemeral({ type: "lsp.updated", schema: {} })
|
|
|
|
export const Definitions = Event.inventory(Updated)
|