mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 22:03:58 +00:00
8 lines
215 B
TypeScript
8 lines
215 B
TypeScript
import { BusEvent } from "@/bus/bus-event"
|
|
import z from "zod"
|
|
|
|
export const Event = {
|
|
Connected: BusEvent.define("server.connected", z.object({})),
|
|
Disposed: BusEvent.define("global.disposed", z.object({})),
|
|
}
|