UNPKG

n8n-nodes-zola-fake

Version:

Các node hỗ trợ Zalo cho n8n Thong

7 lines (6 loc) 381 B
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>;