Property 'connect' does not exist on type 'Observable<any>' | RXJS multicast
问题 I have an Observable that produce the unicast value(individually for all observers). But when i am going to convert into multicast using RxJs multicast operators then it return the following error. Property 'connect' does not exist on type 'Observable' Unicast (Working Code) - let source4$ = interval(1000).pipe(take(4)); source4$.subscribe(val => { console.log(`Observer 1: ${val}`); }); setTimeout(function() { source4$.subscribe(val => { console.log(`Observer 2: ${val}`); }); }, 1000);