| 22 | import { Switch } from "@/components/ui/switch" |
| 23 | |
| 24 | interface SettingsDialogProps { |
| 25 | open: boolean |
| 26 | onOpenChange: (open: boolean) => void |
| 27 | onCloseProtectionChange?: (enabled: boolean) => void |
| 28 | drawioUi: "min" | "sketch" |
| 29 | onToggleDrawioUi: () => void |
| 30 | darkMode: boolean |
| 31 | onToggleDarkMode: () => void |
| 32 | } |
| 33 | |
| 34 | export const STORAGE_ACCESS_CODE_KEY = "next-ai-draw-io-access-code" |
| 35 | export const STORAGE_CLOSE_PROTECTION_KEY = "next-ai-draw-io-close-protection" |
nothing calls this directly
no outgoing calls
no test coverage detected