1// @jsx: react 2// @jsxFactory: __make 3// @module: commonjs 4// @filename: index.tsx 5 6declare global { 7 function __make (params: object): any; 8} 9 10declare var __foot: any; 11 12const thing = <__foot />; 13 14export {} 15