8 lines
259 B
TypeScript
8 lines
259 B
TypeScript
import type { Handler } from './index.js';
|
|
/**
|
|
* Extract all flow types for the methods of a react component. Doesn't
|
|
* return any react specific lifecycle methods.
|
|
*/
|
|
declare const componentMethodsHandler: Handler;
|
|
export default componentMethodsHandler;
|