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

AuthMFAEnrollResponse

type AuthMFAEnrollResponse = {
data: {
id: string;
type: "totp";
totp: {
qr_code: string;
secret: string;
uri: string;
}
;
friendly_name?: string;
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
;

§Type

§
{
data: {
id: string;
type: "totp";
totp: {
qr_code: string;
secret: string;
uri: string;
}
;
friendly_name?: string;
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
[src]