@warriorteam/zalo-personal
Version:
Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support
11 lines (10 loc) • 432 B
TypeScript
import type { QuickMessage } from "../models/QuickMessage.js";
export type AddQuickMessagePayload = {
keyword: string;
title: string;
};
export type AddQuickMessageResponse = {
items: QuickMessage[];
version: number;
};
export declare const addQuickMessageFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (addPayload: AddQuickMessagePayload) => Promise<AddQuickMessageResponse>;