Open
Description
Hello,
We are using vue-rx with typescript and we encountered some issues:
- In
subscriptions
we can access to the properties defined indata
but the current vue-rx types say that we can't.
Note: It works if you use: subscriptions?: Observables | (() => Observables)
instead of subscriptions?: Observables | ((this: V) => Observables)
. But i didn't make a pull request because i am not sure that we can access to the props when subscriptions
is called.
this
is not extended with the data set by the subscriptions. So we can not access to the current values in the methods etc.