Is there any way to hookup to property which is not on the observable yet?
Something like this:
const store = observable({test1: null});
autorun(() => {
console.log(store.test2);
});
extendObservable(store, { test2: "aaa" });