export class Animal { type : string; name : string; constructor (name : string) { this.type = 'animal'; this.name = name; } greet () { return "Hello, I'm a "+this.type+", I'm "+this.name; } }