n8n-nodes-zola-fake
Version:
Các node hỗ trợ Zalo cho n8n Thong
13 lines (12 loc) • 414 B
TypeScript
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("../zalo.js").API) => (count?: number, page?: number) => Promise<GetAvatarListResponse>;