typescript inheritance human data

Create class “Human” which has two protected members:
 name
 constructor() : this initialises name Create another class “Employee” which extends “Human”
and have three members:
 department
 constructor() : this initialises both name and department
 getInfo() : this dispalys name and department of the employee