feat: basic ui and workflow
TS Lint / ESLint (push) Failing after 38s
TS Lint / Oxlint (push) Successful in 42s
TS Lint / TypeScript (push) Successful in 43s

This commit is contained in:
2026-07-06 00:22:46 +02:00
parent 56a41989f0
commit 73067f51ce
8 changed files with 125 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;