UNPKG

ahooks

Version:
6 lines (5 loc) 267 B
import type { useEffect, useLayoutEffect } from 'react'; type EffectHookType = typeof useEffect | typeof useLayoutEffect; type CreateUpdateEffect = (hook: EffectHookType) => EffectHookType; export declare const createDeepCompareEffect: CreateUpdateEffect; export {};