This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Injectable() | |
export class DevToolsExtension { | |
constructor(private appRef: ApplicationRef, private store$: NgReduxStore) {} | |
/** | |
* A wrapper for the Chrome Extension Redux DevTools. | |
* | |
* @argument options: dev tool options; same | |
* format as described here: | |
* [zalmoxisus/redux-devtools-extension/blob/master/docs/API/Arguments.md] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { AnyAction, Store } from 'redux'; | |
import { BehaviorSubject, Observable } from 'rxjs'; | |
import { distinctUntilChanged, map } from 'rxjs/operators'; | |
import { Injectable } from '@angular/core'; | |
import { NgZone } from '@angular/core'; | |
export type Comparator = (x: any, y: any) => boolean; | |
/** |