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

AuthMFAVerifyResponse

type AuthMFAVerifyResponse = {
data: {
access_token: string;
token_type: string;
expires_in: number;
refresh_token: string;
user: User;
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
;

§Type

§
{
data: {
access_token: string;
token_type: string;
expires_in: number;
refresh_token: string;
user: User;
}
;
error: null;
}
| {
data: null;
error: AuthError;
}
[src]