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) 248 B
import { Model } from '@loopback/repository'; /** * Describes the type of grant object taken in by method "refresh". */ export declare class RefreshGrant extends Model { /** * The refresh token value. */ refreshToken: string; }