I'd like to create custom decorator with applyDecorators imported from @nestjs/common
...
applyDecorators(
@Field(),
@MinLength(2)
)
...
But I got typescript lint errors. How can I create a custom decorator which wraps several decorators?
https://docs.nestjs.com/custom-decorators
"class-validator": "^0.11.0"
"@nestjs/common": "^7.0.9"