MCPcopy Create free account
hub / github.com/ResearAI/AutoFigure / SettingsDialogProps

Interface SettingsDialogProps

frontend/components/settings-dialog.tsx:24–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22import { Switch } from "@/components/ui/switch"
23
24interface 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
34export const STORAGE_ACCESS_CODE_KEY = "next-ai-draw-io-access-code"
35export const STORAGE_CLOSE_PROTECTION_KEY = "next-ai-draw-io-close-protection"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected