| 2 | import { UserType } from "../types/user"; |
| 3 | |
| 4 | interface UserStateType { |
| 5 | user?: null | UserType; |
| 6 | loggedIn: boolean; |
| 7 | lastRefreshed: number; |
| 8 | } |
| 9 | |
| 10 | const initialState: UserStateType = { |
| 11 | user: null, |
nothing calls this directly
no outgoing calls
no test coverage detected