import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs/BehaviorSubject';
@Injectable({ providedIn: 'root' }) export class DataService {
private goals = new BehaviorSubject(['The initial goal']); goal = this.goals.asObservable();
constructor() { }
}
I am unable run, as I am getting error as below in tooltip: [ts] Module '"c:/Users/Admin/free_project/code/ng5/node_modules/rxjs/BehaviorSubject"' has no exported member 'BehaviorSubject'.