TypeScript/tests/cases/conformance/jsx/tsxReactEmit5.tsx
2017-01-18 15:16:04 -08:00

21 lines
403 B
TypeScript

//@jsx: react
//@module: commonjs
//@filename: file.tsx
declare module JSX {
interface Element { }
interface IntrinsicElements {
[s: string]: any;
}
}
//@filename: test.d.ts
export var React;
//@filename: react-consumer.tsx
import {React} from "./test";
// Should emit test_1.React.createElement
// and React.__spread
var foo: any;
var spread1 = <div x='' {...foo} y='' />;