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

AuthOtpResponse

AuthOtpResponse is returned when OTP is used.

{@see AuthRsponse}

type AuthOtpResponse = {
data: {
user: null;
session: null;
messageId?: string | null;
}
;
error: null;
}
| {
data: {
user: null;
session: null;
messageId?: string | null;
}
;
error: AuthError;
}
;

§Type

§
{
data: {
user: null;
session: null;
messageId?: string | null;
}
;
error: null;
}
| {
data: {
user: null;
session: null;
messageId?: string | null;
}
;
error: AuthError;
}
[src]