const modules = {
nameA: {
a: '123',
b: '456'
},
nameB: {
a: 'abc',
b: 'def'
}
}
interface ModuleInterface {
name: keyof typeof modules; // 这里提示的是 "nameA" | "nameB"
value: // 这个地方想根据上面name来决定,如果是nameA就提示 "123" | "456",如果是nameB就提示"abc" | "def"
}
问题就是上面ModuleInterface
里面value
怎么定义类型?