@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support
16 lines (15 loc) • 460 B
TypeScript
export type GetLabelsResponse = {
labelData: {
id: number;
text: string;
textKey: string;
conversations: string[];
color: string;
offset: number;
emoji: string;
createTime: number;
}[];
version: number;
lastUpdateTime: number;
};
export declare const getLabelsFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => () => Promise<GetLabelsResponse>;