class-transformer
class-transformer copied to clipboard
fix: Nested array not working correctly
Description
@Type not working correctly while using a nested array
class A{
}
class B{
@Type(() => A)
arrayOfArrayOfA : A[][]
}
Expected behavior
The arrayOfArrayOfA should return a type of A
Actual behavior
But it just returns a normal object