Skip to content

Commit 20498ca

Browse files
authored
Merge pull request #112 from dshukertjr/master
Fix: Added 'AuthUser' to the exports
2 parents 4ae7a10 + 618b0f8 commit 20498ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import SupabaseClient from './SupabaseClient'
22
import { SupabaseClientOptions, SupabaseRealtimePayload } from './lib/types'
3+
import { User as AuthUser } from '@supabase/gotrue-js'
34
export * from '@supabase/gotrue-js'
45
export * from '@supabase/realtime-js'
56

@@ -14,4 +15,4 @@ const createClient = (
1415
return new SupabaseClient(supabaseUrl, supabaseKey, options)
1516
}
1617

17-
export { createClient, SupabaseClient, SupabaseClientOptions, SupabaseRealtimePayload }
18+
export { createClient, SupabaseClient, SupabaseClientOptions, SupabaseRealtimePayload, AuthUser }

0 commit comments

Comments
 (0)