@nguyennhuy/zalo-api
Version:
Unofficial Zalo API for JavaScript
23 lines (22 loc) • 642 B
TypeScript
export type CategoryStickersDetailResponse = {
id: number;
name: string;
desc: string;
totalImage: number;
thumbUrl: string;
iconUrl: string;
iconPreview: string;
price: number;
group: number;
status: number;
version: number;
thumbImg: string;
source: string;
type: number;
sourceUrl: string;
permission: number;
expireTime: number;
is_hidden: number;
order: number;
};
export declare const getCategoryStickersDetailFactory: (ctx: import("../../context.js").ContextBase, api: import("../../apis.js").API) => (cid: string) => Promise<CategoryStickersDetailResponse>;