/** * Information about user in accessing system */ export declare class UserIdentity { /** * Indication whether is user authenticated */ isAuthenticated: boolean; /** * Name of authenticated user */ userName: string; /** * First name of logged user */ firstName: string; /** * Surname of logged user */ surname: string; /** * Array of user permissions */ permissions: string[]; /** * Additional information carried with user identity */ additionalInfo: TUserInfo | null; } //# sourceMappingURL=userIdentity.d.ts.map