UNPKG

@warriorteam/zalo-personal

Version:

Unofficial Zalo Personal API for JavaScript - A powerful library for interacting with Zalo personal accounts with URL attachment support

14 lines (13 loc) 481 B
import { ReminderGroup } from "../models/Reminder.js"; export type GetReminderResponse = ReminderGroup & { groupId: string; eventType: number; responseMem: { rejectMember: number; myResp: number; acceptMember: number; }; repeatInfo: null; repeatData: any[]; }; export declare const getReminderFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (reminderId: string) => Promise<GetReminderResponse>;