import type { WsEventType } from "./ws/types"; export type WsHook = { on: ( eventType: E, handler: (data: unknown) => void, ) => () => void; };