Binding element 'index' implicitly has an 'any' type
for an object, you need to declare like this way with one prop:
{propA} : {propA:any}
with more than one prop:
{propA, propB} : {propA:any, propB:any}
for an object, you need to declare the type as
{index} : {index:any}