@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
15 lines (14 loc) • 410 B
TypeScript
export type UnreadMark = {
id: number;
cliMsgId: number;
fromUid: number;
ts: number;
};
export type GetUnreadMarkResponse = {
data: {
convsGroup: UnreadMark[];
convsUser: UnreadMark[];
};
status: number;
};
export declare const getUnreadMarkFactory: (ctx: import("../context.js").ContextBase, api: import("../apis.js").API) => () => Promise<GetUnreadMarkResponse>;