Files
zulip/static/js/types.ts
2021-09-15 16:53:17 -07:00

15 lines
362 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 approriate modules.
export type User = Record<string, never>;