summaryrefslogtreecommitdiff
path: root/apps/mobile/lib/index.ts
blob: 8213fb027ad476e8598c903eca27a3a7a88e3cd8 (plain) (blame)
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';