mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
440 B
TypeScript
13 lines
440 B
TypeScript
// Type definitions for use-deep-compare-effect 1.2
|
|
// Project: https://github.com/kentcdodds/use-deep-compare-effect#readme
|
|
// Definitions by: JPeer264 <https://github.com/JPeer264>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import { useEffect } from 'react';
|
|
|
|
export const useDeepCompareEffectNoCheck: typeof useEffect;
|
|
|
|
declare const useDeepCompareEffect: typeof useEffect;
|
|
|
|
export default useDeepCompareEffect;
|