1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* 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';
|