AddAbsoluteReminderArgs
type AddAbsoluteReminderArgs = {
due: {
date?: string;
isRecurring?: boolean;
lang?: string | null;
string?: string;
timezone?: string | null;
};
isUrgent?: boolean;
notifyUid?: string;
reminderType: "absolute";
service?: "email" | "push";
taskId: string;
};