@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
8 lines (7 loc) • 374 B
TypeScript
import { AvatarSize } from "../models/index.js";
export type GetAvatarUrlProfileResponse = {
[userId: string]: {
avatar: string;
};
};
export declare const getAvatarUrlProfileFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (friendIds: string | string[], avatarSize?: AvatarSize) => Promise<GetAvatarUrlProfileResponse>;