UNPKG

use-latest-callback

Version:

React hook which returns the latest callback without changing the reference

6 lines (5 loc) 188 B
/** * React hook which returns the latest callback without changing the reference. */ declare function useLatestCallback<T extends Function>(callback: T): T; export = useLatestCallback;