n8n-nodes-zola-fake
Version:
Các node hỗ trợ Zalo cho n8n Thong
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("../zalo.js").API) => () => Promise<GetUnreadMarkResponse>;