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

AuthMFAListFactorsResponse

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

response of ListFactors, which should contain all the types of factors that are available, this ensures we always include all

type AuthMFAListFactorsResponse<T extends FactorTypes = FactorTypes> = RequestResult<{
all: Factor[];
}
& [K in T[number]]: Factor<K, "verified">[]
>
;

§Type Parameters

§
T extends FactorTypes = FactorTypes
[src]

§Type

§
RequestResult<{
all: Factor[];
}
& [K in T[number]]: Factor<K, "verified">[]
>
[src]