Public
Typescript Interface
Typescript Interface
2021.11.28Interface 가 필요한 이유 type과 interface의 차이점은 인터페이스는 개체의 구조를 설명하는데만 사용할 수 있다는 것 실제로 객체 유형을 정의 할때 인터페이스를 더 자주 보게 됩니다. interface Greetable{ name: string; greet(phrase: string): void; } class Person implements Greetable{ name: string; age: number = 27; constructor(name: string) { this.name = name; } greet(phrase: string) { console.log(phrase + ' ' + this.name); } } let user1: Greetable; user1 = new Pers..