UNPKG

@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) 569 B
import { ReminderRepeatMode, ThreadType } from "../models/index.js"; import { ReminderGroup, ReminderUser } from "../models/Reminder.js"; export type CreateReminderOptions = { title: string; emoji?: string; startTime?: number; repeat?: ReminderRepeatMode; }; export type CreateReminderResponse = ReminderUser | ReminderGroup; export declare const createReminderFactory: (ctx: import("../context.js").ContextBase, api: import("../zalo.js").API) => (options: CreateReminderOptions, threadId: string, type?: ThreadType) => Promise<CreateReminderResponse>;