diff --git a/client/contexts/AuthContext.tsx b/client/contexts/AuthContext.tsx index da1c13e8..9c7d91e1 100644 --- a/client/contexts/AuthContext.tsx +++ b/client/contexts/AuthContext.tsx @@ -13,6 +13,7 @@ interface AuthContextType { loading: boolean; signIn: (email: string, password: string) => Promise; signUp: (email: string, password: string, userData?: Partial) => Promise; + signInWithOAuth: (provider: 'github' | 'google') => Promise; signOut: () => Promise; updateProfile: (updates: Partial) => Promise; }