UNPKG

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