有人可以告诉我是什么吗
[index : string] : IFoo
意味着在
export interface IBar {
[index : string] : IFoo;
}
export interface IFoo {
CharacterName: string;
DisplayName: string;
}
我翻阅了 Typescript Revealed 书,并没有发现关于该符号的任何内容。它应该是实现 IFoo 的对象的集合吗?谢谢。