blob: 8213fb027ad476e8598c903eca27a3a7a88e3cd8 (
plain) (
tree)
|
|
/**
* Library exports
*/
export { supabase, SUPABASE_URL } from './supabase';
export { config, getApiBaseUrl, API_CONFIG } from './config';
export {
signIn,
signOut,
getSession,
getCurrentUser,
refreshSession,
isAuthenticated,
signUp,
type AuthResult,
type SignInResult,
type SessionResult,
type UserResult,
} from './auth';
|