type alias supabase.AuthMFAEnrollResponseimport { type supabase } from "https://dotland.deno.dev/x/live@1.63.12/deps.ts"; const { AuthMFAEnrollResponse } = supabase; definition: { data: { id: string; type: "totp"; totp: { qr_code: string; secret: string; uri: string; }; }; error: null; } | { data: null; error: AuthError; }