isImportSpecifier.d.ts 218 B

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