Files
Shifted/node_modules/react-docgen/dist/utils/getClassMemberValuePath.d.ts
2026-02-10 01:14:19 +00:00

4 lines
320 B
TypeScript

import type { NodePath } from '@babel/traverse';
import type { ClassDeclaration, ClassExpression, ClassMethod, Expression } from '@babel/types';
export default function getClassMemberValuePath(classDefinition: NodePath<ClassDeclaration | ClassExpression>, memberName: string): NodePath<ClassMethod | Expression> | null;