| 11 | import type { InspectorConfig } from "../lib/configurationTypes"; |
| 12 | |
| 13 | export interface AuthDebuggerProps { |
| 14 | serverUrl: string; |
| 15 | onBack: () => void; |
| 16 | authState: AuthDebuggerState; |
| 17 | updateAuthState: (updates: Partial<AuthDebuggerState>) => void; |
| 18 | config?: InspectorConfig; |
| 19 | connectionType?: "direct" | "proxy"; |
| 20 | } |
| 21 | |
| 22 | interface StatusMessageProps { |
| 23 | message: { type: "error" | "success" | "info"; message: string }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…