Task attempt 27b79b03-9c06-433e-81bf-90465e2a3419 - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-19 21:18:18 -04:00
parent 5fce97576a
commit 731d0e5623
5 changed files with 73 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
export type ApiResponse<T> = { success: boolean, data: T | null, message: string | null, };
export type Config = { theme: ThemeMode, executor: ExecutorConfig, disclaimer_acknowledged: boolean, };
export type Config = { theme: ThemeMode, executor: ExecutorConfig, disclaimer_acknowledged: boolean, sound_alerts: boolean, };
export type ThemeMode = "light" | "dark" | "system";