useLayoutEffect.d.ts 377 B

1234567
  1. /**
  2. * copy from https://github.com/react-component/util/blob/9d5cb8946da29e690bead78b2c251da6f7cbd0eb/src/hooks/useLayoutEffect.ts
  3. */
  4. import * as React from 'functional-mini/compat';
  5. declare const useLayoutEffect: (callback: (mount: boolean) => void, deps?: any) => void;
  6. export declare const useComponentUpdateEffect: typeof React.useEffect;
  7. export default useLayoutEffect;