mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +00:00
15 lines
363 B
TypeScript
15 lines
363 B
TypeScript
// 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<string, never>;
|