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

UserResponse

type UserResponse = {
data: {
user: User;
}
;
error: null;
}
| {
data: {
user: null;
}
;
error: AuthError;
}
;

§Type

§
{
data: {
user: User;
}
;
error: null;
}
| {
data: {
user: null;
}
;
error: AuthError;
}
[src]