Array Element implicit any, type has no index signature
Element implicitly has an 'any' type because type 'MyFancyType' has no index signature.",
class MyPerson {
public name: string;
public subscriptions: MyFancyType[];
constructor(name: string, subscriptions: MyFancyType){...}
}