Outlook_Addin_LLM/node_modules/@fluentui/react-hooks/lib/useMount.d.ts

7 lines
212 B
TypeScript
Raw Normal View History

/**
* Hook which asynchronously executes a callback once the component has been mounted.
*
* @param callback - Function to call before mount.
*/
export declare const useMount: (callback: () => void) => void;