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

AuthMFAVerifyResponseData

Data returned after successful MFA verification. Contains new session tokens and updated user information.

type AuthMFAVerifyResponseData = {
access_token: string;
token_type: "bearer";
expires_in: number;
refresh_token: string;
user: User;
}
;

§Type

§
{
access_token: string;
token_type: "bearer";
expires_in: number;
refresh_token: string;
user: User;
}
[src]