isReactComponentMethod.d.ts 167 B

12345
  1. import type { NodePath } from '@babel/traverse';
  2. /**
  3. * Returns if the method path is a Component method.
  4. */
  5. export default function (methodPath: NodePath): boolean;