Skip to content

Commit

Permalink
fix: export PostgrestError as a class
Browse files Browse the repository at this point in the history
  • Loading branch information
soedirgo committed Jan 14, 2025
1 parent 80d3c76 commit 7ba8408
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import type { GenericSchema, SupabaseClientOptions } from './lib/types'

export * from '@supabase/auth-js'
export type { User as AuthUser, Session as AuthSession } from '@supabase/auth-js'
export type {
PostgrestResponse,
PostgrestSingleResponse,
PostgrestMaybeSingleResponse,
export {
type PostgrestResponse,
type PostgrestSingleResponse,
type PostgrestMaybeSingleResponse,
PostgrestError,
} from '@supabase/postgrest-js'
export {
Expand Down

0 comments on commit 7ba8408

Please sign in to comment.