UNPKG

@stardyn/angular-auth

Version:

Angular Authentication Service - Lightweight, configurable authentication service for Angular applications with token management and role-based access control

9 lines (8 loc) 187 B
import { XConUser } from './XConUser'; export interface AuthResponse { token: string; refresh_token: string; expires_in: number; token_type: string; user: XConUser; }