isReactBuiltinReference.d.ts 213 B

12345
  1. import type { NodePath } from '@babel/traverse';
  2. /**
  3. * Returns true if the expression is a reference to a react export.
  4. */
  5. export default function isReactBuiltinReference(path: NodePath, name: string): boolean;