class AnimalCollection< TAnimal extends IAnimal > { private itemArray: Array< TAnimal >; constructor() { this.itemArray = []; } FeedAll() { this.itemArray.forEach( (item) => item.Feed() ); } }