@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support, auto-reply, product catalog, and business features
19 lines (18 loc) • 600 B
TypeScript
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>;