Self-Study/기타
[Typescript] 데코레이터의 기본구조
References https://m.blog.naver.com/pjt3591oo/222120496022 https://lts0606.tistory.com/505 데코레이터(Decorator)란? 골뱅이 기호(@)를 사용하여, 해당 키워드가 붙은 클래스나 메소드 및 변수 등 사전에 정의된 기능이 동작하게끔 하는 기능이다. 클래스(class) function classDecorator() { return function (constructor:T) { return class extends constructor { newProperty = "new property"; hello = "override"; } } } @classDecorator() class Test { property = "property";..
2022. 7. 4. 11:37
최근댓글