interface 썸네일형 리스트형 [TypeScript] 03. Interfaces 원문 : https://www.typescriptlang.org/docs/handbook/interfaces.html TypeScript의 핵심 원칙(?)은 type-checking 이다. 이를 위해 Interface라는 녀석을 정의해서 사용한다.간단한 코드를 통해서 알아보자. function printLabel(labelledObj: { label: string }) { console.log(labelledObj.label); } let myObj = {size: 10, label: "Size 10 Object"}; printLabel(myObj); type-checker는 printLabel 이라는 함수를 체크한다. printLabel 이라는 함수는 labelledObj 라는 매개변수를 받는데 이 녀.. 더보기 이전 1 다음