기본 클래스의 멤버에 액세스하는 중 TypeScript 사이트의 놀이터에서 상속 예를 참조하십시오. class Animal { public name; constructor(name) { this.name = name; } move(meters) { alert(this.name + " moved " + meters + "m."); } } class Snake extends Animal { constructor(name) { super(name); } move() { alert("Slithering..."); super.move(5); } } class Horse extends Animal { constructor(name) { super(name); } move() { alert(super.name + "..