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.89.0/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: Prettify<Factor>[];
}
& [K in T[number]]: Prettify<Factor<K, "verified">>[]
>
;

§Type Parameters

§
T extends FactorTypes = FactorTypes
[src]

§Type

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