mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 17:07:07 +00:00
Remove User type from types.ts.
This commit is contained in:
@@ -53,10 +53,6 @@ export type UpdateMessageEvent = {
|
|||||||
topic?: string;
|
topic?: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO/typescript: Move the User and Stream placeholder
|
|
||||||
// types to their appropriate modules.
|
|
||||||
export type User = Record<string, never>;
|
|
||||||
|
|
||||||
export type GroupPermissionSetting = {
|
export type GroupPermissionSetting = {
|
||||||
require_system_group: boolean;
|
require_system_group: boolean;
|
||||||
allow_internet_group: boolean;
|
allow_internet_group: boolean;
|
||||||
|
|||||||
@@ -2,8 +2,9 @@ import * as blueslip from "./blueslip";
|
|||||||
import {FoldDict} from "./fold_dict";
|
import {FoldDict} from "./fold_dict";
|
||||||
import * as group_permission_settings from "./group_permission_settings";
|
import * as group_permission_settings from "./group_permission_settings";
|
||||||
import {page_params} from "./page_params";
|
import {page_params} from "./page_params";
|
||||||
|
import type {User} from "./people";
|
||||||
import * as settings_config from "./settings_config";
|
import * as settings_config from "./settings_config";
|
||||||
import type {User, UserGroupUpdateEvent} from "./types";
|
import type {UserGroupUpdateEvent} from "./types";
|
||||||
|
|
||||||
export type UserGroup = {
|
export type UserGroup = {
|
||||||
description: string;
|
description: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user