@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support
7 lines (6 loc) • 381 B
TypeScript
import { ThreadType } from "../models/index.js";
import type { StickerDetail } from "./getStickersDetail.js";
export type SendStickerResponse = {
msgId: number;
};
export declare const sendStickerFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (sticker: StickerDetail, threadId: string, type?: ThreadType) => Promise<SendStickerResponse>;