File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export interface Action<T> {
1212} ;
1313
1414export interface Reference < T > {
15- onSnapshot : ( options : firebase . firestore . DocumentListenOptions , sub : Subscriber < any > ) => any ;
15+ onSnapshot : ( sub : Subscriber < any > ) => any ;
1616}
1717
1818// A convience type for making a query.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import 'rxjs/add/operator/map';
99
1010function _fromRef < T , R > ( ref : Reference < T > ) : Observable < R > {
1111 const ref$ = new Observable ( subscriber => {
12- const unsubscribe = ref . onSnapshot ( { includeQueryMetadataChanges : true } , subscriber ) ;
12+ const unsubscribe = ref . onSnapshot ( subscriber ) ;
1313 return { unsubscribe } ;
1414 } ) ;
1515 return observeOn . call ( ref$ , new ZoneScheduler ( Zone . current ) ) ;
You can’t perform that action at this time.
0 commit comments