| 16 | * Tests can use this instead of directly accessing localStorage or internal state. |
| 17 | */ |
| 18 | export interface ConduitDebug { |
| 19 | getToken: () => string | null; |
| 20 | getAuthState: () => AuthState; |
| 21 | getCurrentUser: () => User | null; |
| 22 | } |
| 23 | |
| 24 | declare global { |
| 25 | interface Window { |
nothing calls this directly
no outgoing calls
no test coverage detected