索引签名标识符有什么作用?
interface IIndex { [something: string]: any; }
谁会再次使用"东西"?
或者换句话说,为什么语法不是:
interface IIndex { [string]: any; }
typescript
typescript ×1