Skip to main content
type AuthenticateWithJWTResult = {
  user: User;
  message: string;
  isNewUser: boolean;
};
Result from authenticating with a developer-issued JWT.

Properties

PropertyTypeDescription
userUserThe successfully logged-in user.
messagestringThe message to display to the user.
isNewUserbooleanWhether the user is newly signed up.