mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
624da2f727
done
20 lines
408 B
TypeScript
20 lines
408 B
TypeScript
import { IDataObject } from "n8n-workflow";
|
|
|
|
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;
|
|
custom_fields?: IDataObject[];
|
|
}
|