2
TypeScript에서 "type"예약어는 무엇입니까?
TypeScript에서 인터페이스를 만들려고 할 때 "type"이 키워드이거나 예약어라는 것을 알았습니다. 예를 들어 다음 인터페이스를 만들 때 "type"은 TypeScript 1.4가있는 Visual Studio 2013에서 파란색으로 표시됩니다. interface IExampleInterface { type: string; } 다음과 같이 클래스에서 인터페이스를 구현하려고한다고 가정 해 보겠습니다. class ExampleClass implements IExampleInterface { public type: string; constructor() { this.type = …