标签: typescript
这是我定义的接口和引用
interface TestInterface { [index: number]: string, [index: string]: string }
和
ou: TestInterface = { 1: '222', 222: '222' }
编辑器中没有错误。为什么?