mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
/**
|
|
* 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;
|