update lại thư mục cấu trúc mới của server nodejs và python
This commit is contained in:
+34
@@ -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);
|
||||
}
|
||||
Reference in New Issue
Block a user