update lại thư mục cấu trúc mới của server nodejs và python

This commit is contained in:
Victor Phan
2026-07-21 09:13:52 +07:00
parent 7625bdd37b
commit 58b1dcd170
1555 changed files with 0 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
export type TUndoContent = {
globalMsgId: number;
cliMsgId: number;
deleteMsg: number;
srcId: number;
destId: number;
};
export type TUndo = {
actionId: string;
msgId: string;
cliMsgId: string;
msgType: string;
uidFrom: string;
idTo: string;
dName: string;
ts: string;
status: number;
content: TUndoContent;
notify: string;
ttl: number;
userId: string;
uin: string;
cmd: number;
st: number;
at: number;
realMsgId: string;
};
export declare class Undo {
data: TUndo;
threadId: string;
isSelf: boolean;
isGroup: boolean;
constructor(uid: string, data: TUndo, isGroup: boolean);
}