Files
botAffilate/serverADB/node_modules/zca-js/dist/apis/deleteAvatar.d.ts
T
2026-07-21 08:54:30 +07:00

10 lines
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>;