Enable dayjs for task dates
This commit is contained in:
@@ -1,14 +1,16 @@
|
||||
import { Dayjs } from "dayjs";
|
||||
|
||||
export type Task = {
|
||||
status: string;
|
||||
label: string;
|
||||
priority: TaskPriority;
|
||||
createdDate?: string;
|
||||
startDate?: string;
|
||||
scheduledDate?: string;
|
||||
dueDate?: string;
|
||||
completedDate?: string;
|
||||
cancelledDate?: string;
|
||||
recurrencyRule?: string;
|
||||
createdDate?: Dayjs;
|
||||
startDate?: Dayjs;
|
||||
scheduledDate?: Dayjs;
|
||||
dueDate?: Dayjs;
|
||||
completedDate?: Dayjs;
|
||||
cancelledDate?: Dayjs;
|
||||
recurrenceRule?: string;
|
||||
onDelete?: string;
|
||||
id?: string;
|
||||
dependsOn?: string[];
|
||||
|
||||
Reference in New Issue
Block a user