/* * The type script comes here */ import { Dog } from './js/Dog'; import { Cat } from './js/Cat'; let animals = [ new Dog('nora', 'noa'), new Dog('shoën', 'noa'), new Dog('medor', 'noa'), new Cat('felix') ]; let template = ''; document.body.innerHTML = template;