UKbound
UKbound

Reputation: 113

has no exported member 'FireListObservable'?

I have updated firebase to the latest version 4.8.1 but after recieving errors and reading comments I have put it back to the version 4.8.0. However, I am still getting this issue.

Module '"C:/Users/oxyfi/Downloads/travel/travel/node_modules/angularfire2/database/index"' has no exported member 'FirebaseListObservable'.

I have recieved several of the same issues. Any advice would be great. Thank you.

Upvotes: 0

Views: 991

Answers (1)

Mahesh Jadhav
Mahesh Jadhav

Reputation: 1089

You might be getting this error because you are using old Database API. This can solved by importing FirebaseListObservable from depracated module, try this import instead:

import {FirebaseListObservable } from 'angularfire2/database-deprecated';

Upvotes: 1

Related Questions