ngrx error "Module '"@ngrx/effects"' has no exported member 'Effect'"
I trying to implement an effect in ngRx. I import ted "Effect" from "@ngrx/effects", but It showing the error "Module ‘"@ngrx/effects"’ has no exported member ‘Effect’.ts(2305)" import { Actions, ofType, Effect } from "@ngrx/effects"; import { switchMap } from "rxjs/operators"; import * as AuthActions from ‘./auth.actions’; type loginResponse = { token: string, message: string, loggedIn:… Read More ngrx error "Module '"@ngrx/effects"' has no exported member 'Effect'"