@stardyn/angular-auth
Version:
Angular Authentication Service - Lightweight, configurable authentication service for Angular applications with token management and role-based access control
20 lines (19 loc) • 543 B
TypeScript
export interface XConUserAdditionalInfo {
description?: string;
avatar?: string;
profile_picture?: string;
display_name?: string;
full_name?: string;
default_dashboard_id?: string;
default_dashboard_fullscreen?: boolean;
home_dashboard_hide_toolbar?: boolean;
lang?: string;
language?: string;
timezone?: string;
theme?: 'light' | 'dark' | 'auto';
last_login_ip?: string;
failed_login_attempts?: number;
mobile_session?: boolean;
mobile_token?: string;
[key: string]: any;
}