ReminderUpdateArgs
type ReminderUpdateArgs =
| {
due?: SyncDueDate;
id: string;
notifyUid?: string;
service?: ReminderService;
type: Extract<ReminderType, "absolute">;
}
| {
due?: SyncDueDate;
id: string;
minuteOffset?: number;
notifyUid?: string;
service?: ReminderService;
type: Extract<ReminderType, "relative">;
}
| {
id: string;
locLat?: string;
locLong?: string;
locTrigger?: LocationTrigger;
name?: string;
notifyUid?: string;
radius?: number;
type: Extract<ReminderType, "location">;
};