Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Please, create a type definition for an array where each value is an object with name property of string type
type ObjectsWithNamesArray = Array<object>;
type ObjectsWithNamesArray = Array<{ name: string }>;
type ObjectsWithNamesArray = name:Array<string>;
type ObjectsWithNamesArray = Array<name:string>;
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!