UNPKG

@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

11 lines (10 loc) 417 B
import { ThreadType } from "../models/index.js"; export type SendStickerPayload = { id: number; cateId: number; type: number; }; export type SendStickerResponse = { msgId: number; }; export declare const sendStickerFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (sticker: SendStickerPayload, threadId: string, type?: ThreadType) => Promise<SendStickerResponse>;