| 50 | } |
| 51 | |
| 52 | interface ChatPanelProps { |
| 53 | isVisible: boolean |
| 54 | onToggleVisibility: () => void |
| 55 | drawioUi: "min" | "sketch" |
| 56 | onToggleDrawioUi: () => void |
| 57 | darkMode: boolean |
| 58 | onToggleDarkMode: () => void |
| 59 | isMobile?: boolean |
| 60 | onCloseProtectionChange?: (enabled: boolean) => void |
| 61 | } |
| 62 | |
| 63 | // Constants for tool states |
| 64 | const TOOL_ERROR_STATE = "output-error" as const |
nothing calls this directly
no outgoing calls
no test coverage detected