6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import type { NodePath } from '@babel/traverse';
|
|
/**
|
|
* Returns true if the expression is a reference to a react export.
|
|
*/
|
|
export default function isReactBuiltinReference(path: NodePath, name: string): boolean;
|