Checks if the given value is a Map and contains all required keys.
// Ensure the map contains (at least) the keys 13 and 42.@MapContainsKeys([13, 42])values: Map<number, string> Copy
// Ensure the map contains (at least) the keys 13 and 42.@MapContainsKeys([13, 42])values: Map<number, string>
The type of keys to check for.
The keys required in the given map.
Optional
Generic class-validator options.
Checks if the given value is a Map and contains all required keys.
Example