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

AuthMFAGetAuthenticatorAssuranceLevelResponse

type AuthMFAGetAuthenticatorAssuranceLevelResponse = {
data: {
currentLevel: AuthenticatorAssuranceLevels | null;
nextLevel: AuthenticatorAssuranceLevels | null;
currentAuthenticationMethods: AMREntry[];
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
;

§Type

§
{
data: {
currentLevel: AuthenticatorAssuranceLevels | null;
nextLevel: AuthenticatorAssuranceLevels | null;
currentAuthenticationMethods: AMREntry[];
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
[src]