| 22 | export type AuthState = 'authenticated' | 'unauthenticated' | 'unavailable' | 'loading'; |
| 23 | |
| 24 | export interface User { |
| 25 | username: string; |
| 26 | email: string; |
| 27 | bio: string | null; |
| 28 | image: string | null; |
| 29 | token: string; |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Get the current JWT token from the app's debug interface. |
nothing calls this directly
no outgoing calls
no test coverage detected