update lại thư mục cấu trúc mới của server nodejs và python
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
export type UnreadMark = {
|
||||
id: number;
|
||||
cliMsgId: number;
|
||||
fromUid: number;
|
||||
ts: number;
|
||||
};
|
||||
export type GetUnreadMarkResponse = {
|
||||
data: {
|
||||
convsGroup: UnreadMark[];
|
||||
convsUser: UnreadMark[];
|
||||
};
|
||||
status: number;
|
||||
};
|
||||
export declare const getUnreadMarkFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => () => Promise<GetUnreadMarkResponse>;
|
||||
Reference in New Issue
Block a user