@refinedev/core
Version:
refine is a React-based framework for building internal tools, rapidly. It ships with Ant Design System, an enterprise-level UI toolkit.
7 lines • 355 B
text/typescript
import React from "react";
/**
* Hook that memoizes the given dependency array and checks the consecutive calls with deep equality and returns the same value as the first call if dependencies are not changed.
* @internal
*/
export declare const useDeepMemo: <T>(fn: () => T, dependencies: React.DependencyList) => T;
//# sourceMappingURL=index.d.ts.map