type alias supabase.AuthResponseimport { type supabase } from "https://deno.land/x/deco@1.75.1/deps.ts"; const { AuthResponse } = supabase; definition: { data: { user: User | null; session: Session | null; }; error: null; } | { data: { user: null; session: null; }; error: AuthError; }