diff --git a/packages/data/src/create-selector.ts b/packages/data/src/create-selector.ts index 6d05dff1ca036..bfb7a1d283733 100644 --- a/packages/data/src/create-selector.ts +++ b/packages/data/src/create-selector.ts @@ -3,9 +3,5 @@ * and the selector parameters, and recomputes the values only when any of them changes. * * @see The documentation for the `rememo` package from which the `createSelector` function is reexported. - * - * @param selector Selector function that calculates a value from state and parameters. - * @param getDependants Function that returns an array of "dependant" objects. - * @return A memoized version of `selector` that caches the calculated return values. */ export { default as createSelector } from 'rememo';