0

enter image description here

I can't add the @IsNotEmpty() validator in nestjs Dtos

1 Answers1

1

Decorators in Typescript can only apply to classes, class members, class methods, and class method parameters. This is an interface, so it's not a valid location for a decorator.

Jay McDoniel
  • 57,339
  • 7
  • 135
  • 147