6 lines
167 B
TypeScript
6 lines
167 B
TypeScript
import type { NodePath } from '@babel/traverse';
|
|
/**
|
|
* Returns if the method path is a Component method.
|
|
*/
|
|
export default function (methodPath: NodePath): boolean;
|