let myObj = {
a: {
value: 1
},
b: {
value: 2
}
}
myObj = { // How can I make the property b optional in myObj without specifying my own type?
a: {
value: 123
}
}
Is there a way to make the property myObj.b optional without defining a custom type?