UNPKG

345 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.createElement(...)`.
6 */
7export default function isReactCreateElementCall(path: NodePath): path is NodePath<CallExpression & {
8 __reactBuiltinTypeHint: true;
9}>;