UNPKG

ng2-org-chart

Version:

Hierarchical Organizational Chart for Angular (4+)

15 lines (14 loc) 366 B
export interface IEmployee { name: string; designation: string; img: string; subordinates: IEmployee[]; } export declare class Employee implements IEmployee { name: string; designation: string; img: string; subordinates: Employee[]; manager?: Employee; constructor(orgStructure: string[], manager?: Employee); }