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

CustomProviderListResponse

import type { CustomProviderListResponse } from "https://esm.sh/@supabase/supabase-js@2.99.0/dist/index.d.mts";

Response type for listing custom providers.

type CustomProviderListResponse = {
data: {
providers: CustomOAuthProvider[];
}
;
error: null;
}
| {
data: {
providers: [];
}
;
error: AuthError;
}
;

§Type

§
{
data: {
providers: CustomOAuthProvider[];
}
;
error: null;
}
| {
data: {
providers: [];
}
;
error: AuthError;
}
[src]