c212805
1
2
3
4
5
6
7
8
9
import { AuthClient } from '@supabase/auth-js' import { SupabaseAuthClientOptions } from './types' export class SupabaseAuthClient extends AuthClient { constructor(options: SupabaseAuthClientOptions) { super(options) } }