UNPKG

n8n-nodes-zola-fake

Version:

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

20 lines (19 loc) 622 B
import { ThreadType } from "../models/index.js"; import { Reactions } from "../models/Reaction.js"; export type AddReactionResponse = { msgIds: number[]; }; export type CustomReaction = { rType: number; source: number; icon: string; }; export type AddReactionDestination = { data: { msgId: string; cliMsgId: string; }; threadId: string; type: ThreadType; }; export declare const addReactionFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (icon: Reactions | CustomReaction, dest: AddReactionDestination) => Promise<AddReactionResponse>;