| 10 | } |
| 11 | |
| 12 | interface User { |
| 13 | id: number; |
| 14 | email: string; |
| 15 | name: string; |
| 16 | picture: string; |
| 17 | role: string; |
| 18 | } |
| 19 | |
| 20 | export const useAuthStore = create<AuthStore>(set => ({ |
| 21 | isAuth: false, |
nothing calls this directly
no outgoing calls
no test coverage detected