@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
10 lines (9 loc) • 331 B
TypeScript
export type DeleteAvatarResponse = {
delPhotoIds: string[];
errMap: {
[key: string]: {
err: number;
};
};
};
export declare const deleteAvatarFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (photoId: string | string[]) => Promise<DeleteAvatarResponse>;