import { UserIdentity } from "./identities"; export interface OrgTreeUser { id: string; displayName: string; jobTitle: string; department: string; mail: string; userPrincipalName: string; officeLocation?: string; accountName?: string; accountEnabled?: boolean; } export interface OrgTree { currentUser: OrgTreeUser; manager: OrgTreeUser; managerManager: OrgTreeUser; reportees: Array; } export interface OrgTreeComponentSettings { user: UserIdentity; linkToProfilecard: boolean; }