mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-28 22:19:41 -08:00
17 lines
331 B
TypeScript
17 lines
331 B
TypeScript
|
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;
|
||
|
}
|