feat: basic ui and workflow
This commit is contained in:
@@ -16,6 +16,14 @@ export interface RawTask {
|
||||
previous_check_date: string | null;
|
||||
}
|
||||
|
||||
export interface Task {
|
||||
id: string;
|
||||
name: string;
|
||||
reset_cron: string | null;
|
||||
check_date: Date | null;
|
||||
previous_check_date: Date | null;
|
||||
}
|
||||
|
||||
export interface TaskCreateData {
|
||||
name: string;
|
||||
reset_cron: string | null;
|
||||
|
||||
Reference in New Issue
Block a user