UNPKG

nestjs-starter

Version:

Get started for beginners with Nestjs

15 lines (12 loc) 281 B
import { IsString, MaxLength, MinLength } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; export class CreateSession { @ApiProperty() @IsString() username: string; @ApiProperty() @IsString() @MinLength(8) @MaxLength(32) password: string; }