/
The ObjectData type is the same as { [index: string]: any; }. This is to ease writing someDataObject.anyPropertyName, when dealing with arbitrary JavaScript Objects used as model data.
{ [index: string]: any; }
someDataObject.anyPropertyName
The ObjectData type is the same as
{ [index: string]: any; }
. This is to ease writingsomeDataObject.anyPropertyName
, when dealing with arbitrary JavaScript Objects used as model data.