deformationList
Spec
deformationList<TTarget>(
target: { L: ListAttributeValue },
TClass: ClassCapture<TTarget>
): TTarget[]Input
Example
const entity: Cat[] = Mapper.deformationEntityArray(
{
L: [
{ M: { id: { N: "666" }, name: { S: "garfield" } } },
{ M: { id: { N: "777" }, name: { S: "doreamong" } } }
]
},
Cat
);Last updated