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) 269 B
import { Model } from '@loopback/repository'; /** * The type of the request used for validating a reset password token. */ export declare class ResetPasswordTokenGrant extends Model { /** * The value of the reset password token. */ value: string; }