isReactCreateElementCall.d.ts 345 B

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