update lại thư mục cấu trúc mới của server nodejs và python
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
import type { ZBusinessPackage } from "../models/ZBusiness.js";
|
||||
export type SentFriendRequestInfo = {
|
||||
userId: string;
|
||||
zaloName: string;
|
||||
displayName: string;
|
||||
avatar: string;
|
||||
globalId: string;
|
||||
bizPkg: ZBusinessPackage;
|
||||
fReqInfo: {
|
||||
message: string;
|
||||
src: number;
|
||||
time: number;
|
||||
};
|
||||
};
|
||||
export type GetSentFriendRequestResponse = {
|
||||
[userId: string]: SentFriendRequestInfo;
|
||||
};
|
||||
export declare const getSentFriendRequestFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => () => Promise<GetSentFriendRequestResponse>;
|
||||
Reference in New Issue
Block a user