The type of the input selectors.
The type of the result returned by the resultFunc
.
The type of the memoize function that is used to memoize the resultFunc
inside createSelector
(e.g., lruMemoize
or weakMapMemoize
).
The type of the optional memoize function that is used to memoize the arguments passed into the output selector generated by createSelector
(e.g., lruMemoize
or weakMapMemoize
). If none is explicitly provided, weakMapMemoize
will be used.
Represents the actual selectors generated by
createSelector
.