13 lines
590 B
JavaScript
13 lines
590 B
JavaScript
import SupabaseClient from './SupabaseClient';
|
|
export * from '@supabase/auth-js';
|
|
export { PostgrestError, } from '@supabase/postgrest-js';
|
|
export { FunctionsHttpError, FunctionsFetchError, FunctionsRelayError, FunctionsError, FunctionRegion, } from '@supabase/functions-js';
|
|
export * from '@supabase/realtime-js';
|
|
export { default as SupabaseClient } from './SupabaseClient';
|
|
/**
|
|
* Creates a new Supabase Client.
|
|
*/
|
|
export const createClient = (supabaseUrl, supabaseKey, options) => {
|
|
return new SupabaseClient(supabaseUrl, supabaseKey, options);
|
|
};
|
|
//# sourceMappingURL=index.js.map
|