Files
neuron/packages/opencode/src/file/index.ts
T
2025-06-27 11:33:37 -04:00

14 lines
213 B
TypeScript

import { z } from "zod"
import { Bus } from "../bus"
export namespace File {
export const Event = {
Edited: Bus.event(
"file.edited",
z.object({
file: z.string(),
}),
),
}
}