Recently, I encountered an error while working with angular services related to the use of BehaviorSubject
.
The Error
A message stating that 'Module "ng5/node_modules/rxjs/BehaviorSubject" has no exported member 'BehaviorSubject'' appeared.
data.service.ts
import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable()
export class DataService {
constructor() { }
}