mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-27 23:06:29 -04:00
85e2855981
Closes #5263
13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
import { createSelector } from 'reselect';
|
|
import AppState from 'App/State/AppState';
|
|
import ParseAppState from 'App/State/ParseAppState';
|
|
|
|
export default function parseStateSelector() {
|
|
return createSelector(
|
|
(state: AppState) => state.parse,
|
|
(parse: ParseAppState) => {
|
|
return parse;
|
|
}
|
|
);
|
|
}
|