Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This does not compile export type Selector<S, R> = (state: S) => R; export interface OutputSelector<S, R, C> extends Selector<S, R> { resultFunc: C; recomputations: () => number; resetRecomputations: () => number; } interfaces cannot extend types. https://github.com/reactjs/reselect/blob/master/src/index.d.ts#L3-L8
- Loading branch information