clickup node and trigger

This commit is contained in:
Ricardo Espinoza
2020-01-18 17:19:31 -05:00
parent a5572eca9e
commit 7ec85f0376
8 changed files with 1127 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
export interface ITask {
name?: string;
content?: string;
assignees?: string[];
tags?: string[];
status?: string;
priority?: number;
due_date?: number;
due_date_time?: boolean;
time_estimate?: number;
start_date?: number;
start_date_time?: boolean;
markdown_content?: string;
notify_all?: boolean;
parent?: string;
}