lbx-jwt
Version:
Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.
15 lines (14 loc) • 320 B
TypeScript
import { Model } from '@loopback/repository';
/**
* The type of the request used for resetting a password.
*/
export declare class ConfirmResetPassword extends Model {
/**
* The reset password token.
*/
resetToken: string;
/**
* The new password of the user.
*/
password: string;
}