Jesus sucks
This commit is contained in:
20
backend/frontend/node_modules/@restart/hooks/cjs/useMountEffect.d.ts
generated
vendored
Normal file
20
backend/frontend/node_modules/@restart/hooks/cjs/useMountEffect.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { EffectCallback } from 'react';
|
||||
/**
|
||||
* Run's an effect on mount, and is cleaned up on unmount. Generally
|
||||
* useful for interop with non-react plugins or components
|
||||
*
|
||||
* ```ts
|
||||
* useMountEffect(() => {
|
||||
* const plugin = $.myPlugin(ref.current)
|
||||
*
|
||||
* return () => {
|
||||
* plugin.destroy()
|
||||
* }
|
||||
* })
|
||||
* ```
|
||||
* @param effect An effect to run on mount
|
||||
*
|
||||
* @category effects
|
||||
*/
|
||||
declare function useMountEffect(effect: EffectCallback): void;
|
||||
export default useMountEffect;
|
||||
Reference in New Issue
Block a user