minor tweak in IThreads

This commit is contained in:
Reinaldo Neto 2021-12-21 00:59:55 -03:00
parent b26838f5ca
commit 037c921f46
1 changed files with 5 additions and 5 deletions

View File

@ -11,11 +11,11 @@ export interface IThread {
msg: string; msg: string;
t: RoomType; t: RoomType;
rid: string; rid: string;
_updated_at: Date; _updatedAt: Date;
ts: Date; ts: Date;
u: { _id: string; username: string; name: string }; u: { _id: string; username: string; name: string };
alias: any; alias: any;
parse_urls: any; parseUrls: any;
groupable: boolean; groupable: boolean;
avatar: string; avatar: string;
emoji: any; emoji: any;
@ -24,20 +24,20 @@ export interface IThread {
status: number; status: number;
pinned: boolean; pinned: boolean;
starred: boolean; starred: boolean;
edited_by: { username: string }; editedBy: { username: string };
reactions: IReaction[]; reactions: IReaction[];
role: string; role: string;
drid: string; drid: string;
dcount: number; dcount: number;
dlm: number; dlm: number;
tmid: string; tmid: string;
tcount: 2; tcount: number;
tlm: Date; tlm: Date;
replies: string[]; replies: string[];
mentions: IMention[]; mentions: IMention[];
channels: []; channels: [];
unread: boolean; unread: boolean;
auto_translate: boolean; autoTranslate: boolean;
translations: any; translations: any;
e2e: any; e2e: any;
} }