@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) • 508 B
TypeScript
import type { ThreadType } from "../models/Enum.js";
export type UpdateArchivedChatListTarget = {
id: string;
type: ThreadType;
};
export type UpdateArchivedChatListResponse = {
needResync: boolean;
version: number;
};
export declare const updateArchivedChatListFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => (isArchived: boolean, conversations: UpdateArchivedChatListTarget | UpdateArchivedChatListTarget[]) => Promise<UpdateArchivedChatListResponse>;