Skip to content

Commit

Permalink
fix #824 (#1676)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 authored and gantoine committed Dec 22, 2017
1 parent 519092a commit 00301f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
declare module "reselect" {
declare type Selector<TState, TProps, TResult> = {
(state: TState, props: TProps, ...rest: any[]): TResult
};
declare type Selector<TState, TProps, TResult> =
(state: TState, props: TProps, ...rest: any[]) => TResult;

declare type SelectorCreator = {
<
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
// flow-typed version: b43dff3e0e/reselect_v3.x.x/flow_>=v0.28.x

declare module "reselect" {
declare type Selector<-TState, TProps, TResult> = {
(state: TState, props: TProps, ...rest: any[]): TResult
};
declare type Selector<-TState, TProps, TResult> =
(state: TState, props: TProps, ...rest: any[]) => TResult

declare type SelectorCreator = {
<TState, TProps, TResult, T1>(
Expand Down

0 comments on commit 00301f0

Please sign in to comment.