UNPKG

@warriorteam/zalo-personal

Version:

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

17 lines (16 loc) 575 B
import { ThreadType } from "../models/index.js"; export type SendSeenEventResponse = { status: number; }; export type SendSeenEventMessageParams = { msgId: string; cliMsgId: string; uidFrom: string; idTo: string; msgType: string; st: number; at: number; cmd: number; ts: string | number; }; export declare const sendSeenEventFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (messages: SendSeenEventMessageParams | SendSeenEventMessageParams[], type?: ThreadType) => Promise<SendSeenEventResponse>;