UNPKG

rc-hooks

Version:
12 lines (11 loc) 258 B
/** * 只在组件 `unmount` 时执行的 Hook。 * * @param fn 组件 `unmount` 时执行的函数。 * @example * useUnmount(() => { * console.log('unmount'); * }); */ declare const useUnmount: (fn: () => any) => void; export default useUnmount;