After upgrading to Angular 6, I attempted to implement ForkJoin in my project. In my service file, I included the following code:
import { forkJoin } from 'rxjs/observable/forkJoin';
However, it seems to be unable to recognize it and I encountered this error message:
...ForkJoin has no exported member
Is there a way to resolve this issue?