UNPKG

343 BTypeScriptView Raw
1import type { NodePath } from '@babel/traverse';
2import type { CallExpression } from '@babel/types';
3/**
4 * Returns true if the expression is a function call of the form
5 * `React.foo(...)`.
6 */
7export default function isReactBuiltinCall(path: NodePath, name: string): path is NodePath<CallExpression & {
8 __reactBuiltinTypeHint: true;
9}>;