feat: basic ui and workflow
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-06 00:22:37 +02:00
parent 56a41989f0
commit b622e10b4b
7 changed files with 83 additions and 59 deletions
+8
View File
@@ -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;