UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support

25 lines (24 loc) 682 B
export type StickerDetail = { id: number; cateId: number; type: number; text: string; uri: string; fkey: number; status: number; stickerUrl: string; stickerSpriteUrl: string; stickerWebpUrl: any; totalFrames: number; duration: number; effectId: number; checksum: string; ext: number; source: number; fss: any; fssInfo: any; version: number; extInfo: any; }; export type StickerDetailResponse = StickerDetail[]; export declare const getStickersDetailFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (stickerIds: number | number[]) => Promise<StickerDetailResponse>;