TypeScript/tests/cases/compiler/doubleUnderscoreReactNamespace.ts
meyer 36ce7eac5a Update JSX intrinsic element test to match babel’s (#19946)
* Update JSX intrinsic element test to match babel’s

* Update baseline

* Move regex out of isIntrinsicJsxName

* Switch to non-regex intrinsic name test
2017-11-14 09:40:32 -08:00

15 lines
224 B
TypeScript

// @jsx: react
// @jsxFactory: __make
// @module: commonjs
// @filename: index.tsx
declare global {
function __make (params: object): any;
}
declare var __foot: any;
const thing = <__foot />;
export {}