Properties
| Property | Type | Description |
|---|---|---|
user | User | The successfully logged-in user. |
message | string | The message to display to the user. |
isNewUser | boolean | Whether the user is newly signed up. |
type VerifyOAuthResult = {
user: User;
message: string;
isNewUser: boolean;
};
| Property | Type | Description |
|---|---|---|
user | User | The successfully logged-in user. |
message | string | The message to display to the user. |
isNewUser | boolean | Whether the user is newly signed up. |
Was this page helpful?