Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

createClient

Creates a new Supabase Client.

const createClient: <Database = any, SchemaName extends string & keyof Database = "public" extends keyof Database ? "public" : string & keyof Database, Schema extends GenericSchema = Database[SchemaName] extends GenericSchema ? Database[SchemaName] : any>(
supabaseUrl: string,
supabaseKey: string,
options?: SupabaseClientOptions<SchemaName> | undefined,
) => SupabaseClient<Database, SchemaName, Schema>
;