Can someone please tell me that
[index : string] : IFoo means in
export interface IBar { [index : string] : IFoo; } export interface IFoo { CharacterName: string; DisplayName: string; }
I looked through the Typescript book, opened it and found nothing in this notation. Is this a collection of objects that implement IFoo? Thanks.
source share