NestJS - Pipes
Given this DTO:
And ValidationPipe with
class UserDto { @IsInt() age: number;}And ValidationPipe with
transform: true, what happens when the input is { "age": "30" }?