Doing exactly like in the provided example for Map validation doesn't work. My code: ```javascript class EventDto { @IsInt({ each: true }) readonly clicks: Map<string, number>; } ``` The above code won't trigger any errors when receiving: `{ myKey: 'a string' }`