Skip to content

Commit

Permalink
fix(store): correct types for SelectorFactoryConfig (#2752)
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianPodgajny authored Oct 22, 2020
1 parent 01ad2cd commit aa9bf1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/store/src/selector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,8 @@ export function defaultStateFn(
export type SelectorFactoryConfig<T = any, V = any> = {
stateFn: (
state: T,
props: any,
selectors: Selector<any, any>[],
props: any,
memoizedProjector: MemoizedProjection
) => V;
};
Expand Down

0 comments on commit aa9bf1a

Please sign in to comment.