TypeScript Decorators

오픈소스·2022년 12월 25일
0
post-thumbnail
post-custom-banner

NestJS로 배우는 백엔드 프로그래밍, P42

https://www.typescriptlang.org/docs/handbook/decorators.html

tsconfig.json

{
  "compilerOptions": {
    ...
    "experimentalDecorators": true
    ...
  }
}
Decorators역할호출 시 전달되는 인수선언 불가능한 위치
Class Decorators클래스의 정의를 읽거나 수정constructord.ts 파일, declare 클래스
Method Decorators메서드의 정의를 읽거나 수정target, propertyKey, propertyDescriptord.ts 파일, declare 클래스, 오버로드 메서드
Accessor Decorators접근자의 정의를 읽거나 수정target, propertyKey, propertyDescriptord.ts 파일, declare 클래스
Property Decorators속성의 정의를 읽거나 수정target, propertyKeyd.ts 파일, declare 클래스
Parameter Decorators매개변수의 정의를 읽거나 수정target, propertyKey, paramterIndexd.ts 파일, declare 클래스
post-custom-banner

0개의 댓글