feat: toasts
TS Lint / TypeScript (push) Successful in 1m22s
TS Lint / Oxlint (push) Successful in 1m22s
TS Lint / ESLint (push) Successful in 1m28s

This commit is contained in:
2026-07-14 11:23:33 +02:00
parent 3b499ff791
commit 9f4c8776d5
8 changed files with 103 additions and 2 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
}