We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 452b9dc commit 4dbcb78Copy full SHA for 4dbcb78
src/utils/firebase_observable.ts
@@ -4,7 +4,7 @@ import {Subscriber} from 'rxjs/Subscriber';
4
import {Subscription} from 'rxjs/Subscription';
5
6
export class FirebaseObservable<T> extends Observable<T> {
7
- constructor(subscribe?: <R>(subscriber: Subscriber<R>) => Subscription<T> | Function | void, private _ref?:Firebase) {
+ constructor(subscribe?: <R>(subscriber: Subscriber<R>) => Subscription | Function | void, private _ref?:Firebase) {
8
super(subscribe);
9
}
10
lift<T, R>(operator: Operator<T, R>): Observable<R> {
0 commit comments