UNPKG

@devlearning/jwt-auth

Version:

Jwt Angular Authentication manager with automatic Refresh Token management.

12 lines (11 loc) 402 B
import { JwtAuthLogLevel } from "./jwt-auth-log-level"; import { JwtTokenBase } from "./jwt-token-base"; import { StorageType } from "./storage-type"; export declare class JwtAuthConfig { tokenUrl: string; refreshUrl: string; useManualInitialization: boolean; logLevel: JwtAuthLogLevel; storageType?: StorageType; refreshTokenRequestFactory?: (token: JwtTokenBase) => object; }