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

6 lines
218 B
TypeScript

import type { NodePath } from '@babel/traverse';
/**
* Checks if the path is a ImportSpecifier that imports the given named export
*/
export default function isImportSpecifier(path: NodePath, name: string): boolean;