componentMethodsHandler.d.ts 259 B

1234567
  1. import type { Handler } from './index.js';
  2. /**
  3. * Extract all flow types for the methods of a react component. Doesn't
  4. * return any react specific lifecycle methods.
  5. */
  6. declare const componentMethodsHandler: Handler;
  7. export default componentMethodsHandler;