TypeScript/tests/cases/compiler/doubleUnderscoreReactNamespace.ts

15 lines
224 B
TypeScript
Raw Normal View History

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