// TODO/typescript: Move this to server_events_dispatch export type UserGroupUpdateEvent = { id: number; type: string; group_id: number; data: { name?: string; description?: string; }; }; // TODO/typescript: Move the User and Stream placeholder // types to their appropriate modules. export type User = Record;