UNPKG

nestjs-starter

Version:

Get started for beginners with Nestjs

9 lines (7 loc) 178 B
import { IsString } from 'class-validator'; import { ApiProperty } from '@nestjs/swagger'; export class UpdateSession { @ApiProperty() @IsString() refreshToken: string; }