UNPKG

@hpe/angular-toolkit

Version:

Hewlett-Packard Enterprise : Angular toolkit for rapid project development

23 lines (22 loc) 434 B
export declare class Credentials { username: string; password: string; } export declare class Session { token: string; user: SessionUser; profile: Profile; } export declare class SessionUser { id: number; username: string; name: string; lastLogin: string; language: string; } export declare class Profile { code: string; name: string; homePage: string; permissions: string[]; }