I want to create class property decorator which will look for all changes of this property and do some stuff. How can i do that?
In RxJs i found ofObjectChanges
method
https://github.com/Reactive-Extensions/RxJS/blob/master/doc/api/core/operators/ofobjectchanges.md
but looks like that method does not exist in angular2 RxJs version.
That method must trigger on changes of object, for example with Array.push();