AbsoluteReminder
type AbsoluteReminder = {
[key: string]: unknown;
due: {
date: string;
datetime?: string | null;
isRecurring: boolean;
lang?: string | null;
string: string;
timezone?: string | null;
};
id: string;
isDeleted: boolean;
itemId: string;
notifyUid: string;
projectId?: string;
type: "absolute";
};
Type Declaration
Index Signature
[key: string]: unknown