You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constModelA=types.model('A',{aNumb: 1},{});constModelB=types.model('B',{bNumb: 10,aInstance: ModelA},{});constbInstance=ModelB.create({bNumb: 'abc',// this should be an error since c is not a number, but it is not reportedxxx: 100,// this is correctly reported as not being part of ModelBaInstance: {xxx: 4,// this is NOT correctly reported as not being part of ModelA}});
The text was updated successfully, but these errors were encountered:
Using TS 2.4.1 I just noticed this
The text was updated successfully, but these errors were encountered: