| 36 | //============================================================================== |
| 37 | |
| 38 | export interface AuthState { |
| 39 | loading: boolean |
| 40 | currentUser: GithubUser |
| 41 | isAuthenticated: boolean |
| 42 | error?: string |
| 43 | } |
| 44 | |
| 45 | export interface CategoryState { |
| 46 | categories: CategoryItem[] |
nothing calls this directly
no outgoing calls
no test coverage detected