fix(lint) Fix eslint

This commit is contained in:
Horatiu Muresan 2022-09-15 17:17:38 +03:00
parent db59e517c7
commit 4adebf9f61
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
/* eslint-disable import/order */
import { Store } from 'redux';
import { IState } from '../../app/types';
import { equals } from './functions';
@ -37,7 +38,7 @@ type Listener
* {@code prevSelection}. The associated {@code Listener} will only be invoked
* if the returned value is other than {@code prevSelection}.
*/
type Selector = (state: Object, prevSelection: any) => any;
type Selector = (state: IState, prevSelection: any) => any;
/**
* Options that can be passed to the register method.