UNPKG

lbx-jwt

Version:

Provides JWT authentication for loopback applications. Includes storing roles inside tokens and handling refreshing. Built-in reuse detection.

11 lines (10 loc) 305 B
import { Model } from '@loopback/repository'; /** * The type of the request used for requesting the reset of a password. */ export declare class RequestResetPasswordGrant extends Model { /** * The email of the user for which the password reset should be requested. */ email: string; }