| 7 | import type { User } from "@supabase/supabase-js"; |
| 8 | |
| 9 | interface AuthContextValue { |
| 10 | user: User | null; |
| 11 | loading: boolean; |
| 12 | signIn: () => Promise<void>; |
| 13 | signOut: () => Promise<void>; |
| 14 | syncNow: () => void; |
| 15 | syncVersion: number; |
| 16 | } |
| 17 | |
| 18 | const AuthContext = createContext<AuthContextValue>({ |
| 19 | user: null, |
nothing calls this directly
no outgoing calls
no test coverage detected