A selector function, property name string, or property name path (array of strings/array indices) that locates the store data to be selected
transformer that operates on observables instead of values.
Optional
comparator: ComparatorFunction used to determine if this selector has changed.
Generated using TypeDoc
Selects an observable using the given path selector, and runs it through the given transformer function. A transformer function takes the store observable as an input and returns a derived observable from it. That derived observable is run through distinctUntilChanges with the given optional comparator and attached to the store property.
Think of a Transformer as a FunctionSelector that operates on observables instead of values.