Answers for "js Validating sets"

0

js Validating sets

// If your field is a set and you want to perform 
// validation of each item in the set you must 
// specify a special each: true decorator option:

import { MinLength, MaxLength } from 'class-validator';

export class Post {
  @MaxLength(20, {
    each: true,
  })
  tags: Set<string>;
}
Posted by: Guest on March-30-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language