@nguyennhuy/zalo-api
Version:
Unofficial Zalo API for JavaScript
24 lines (23 loc) • 685 B
TypeScript
export type CategoryStickersDetailStickResponse = Array<{
id: number;
cateId: number;
type: number;
text: string;
uri: string;
fkey: number;
status: number;
stickerUrl: string;
stickerSpriteUrl: string;
stickerWebpUrl: string;
totalFrames: number;
duration: number;
effectId: number;
checksum: string;
ext: number;
source: number;
fss: string;
fssInfo: string;
version: number;
extInfo: string;
}>;
export declare const getCategoryStickersDetailStickFactory: (ctx: import("../../context.js").ContextBase, api: import("../../apis.js").API) => (cid: string) => Promise<CategoryStickersDetailStickResponse>;