想要使用typescript定义一个对象,对象中可以有任意属性,但是在访问属性的时候会报错,显示Property "a" does not exist on type Object,请问有方法可以定义这样一个对象吗?
Property "a" does not exist on type Object
type Options = {
data: Object
}
const v: Options = {
data: {
a: 1,
b: 2
v.data.a
// Property "a" does not exist on type Object
相关分类