Task attempt 2516676f-e05c-4f2b-906c-f4a882d5f47a - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-21 23:28:24 +01:00
parent 4a47c50868
commit dd44d19f8d
6 changed files with 84 additions and 1 deletions

View File

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