Files
est-frame/node_modules/@restart/hooks/cjs/useWillUnmount.d.ts
2025-10-22 05:38:27 +00:00

8 lines
208 B
TypeScript
Executable File

/**
* Attach a callback that fires when a component unmounts
*
* @param fn Handler to run when the component unmounts
* @category effects
*/
export default function useWillUnmount(fn: () => void): void;