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

12 lines
398 B
TypeScript

import type { NodePath } from '@babel/traverse';
import type { Expression, MemberExpression } from '@babel/types';
/**
* Returns the path to the first part of the MemberExpression. I.e. given a
* path representing
*
* foo.bar.baz
*
* it returns the path of/to `foo`.
*/
export default function getMemberExpressionRoot(memberExpressionPath: NodePath<MemberExpression>): NodePath<Expression>;