I am currently following the meteor-ionic tutorial and encountering a typescript error:
typescript: src/pages/details/details.ts, line: 35
Property 'zone' does not exist on type 'Observable<{}>'.
This is my component setup:
import { MeteorObservable } from 'meteor-rxjs';
......
MeteorObservable.call('updateRestaurantDetails',
restaurant
).zone().subscribe((result) => {
console.log(result);
});
......
Additionally, the version of the meteor-rxjs module I'm using is "^0.4.8".
Can anyone help me identify what mistake I might be making? And how can I go about fixing this issue?