UNPKG

@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

13 lines (12 loc) 414 B
export type GetAvatarListResponse = { albumId: string; nextPhotoId: string; hasMore: number; photos: { photoId: string; thumbnail: string; url: string; bkUrl: string; }[]; }; export declare const getAvatarListFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (count?: number, page?: number) => Promise<GetAvatarListResponse>;