UNPKG

react-docgen

Version:

A library to extract information from React components for documentation generation.

7 lines (6 loc) 278 B
import type { NodePath } from '@babel/traverse'; /** * Checks if the input Identifier is part of a destructuring Assignment * and the name of the property key matches the input name */ export default function isDestructuringAssignment(path: NodePath, name: string): boolean;