feat: toasts
TS Lint / Oxlint (push) Successful in 2m14s
TS Lint / TypeScript (push) Successful in 2m20s
TS Lint / ESLint (push) Successful in 2m39s

This commit is contained in:
2026-07-14 11:39:03 +02:00
parent 3b499ff791
commit 5d655b9613
13 changed files with 174 additions and 14 deletions
+7
View File
@@ -39,3 +39,10 @@ export interface TaskUpdateData {
check_date?: string | null;
previous_check_date?: string | null;
}
export interface Alert {
message: string
type: 'info' | 'success' | 'warning' | 'error'
created: Date
seconds: number
}