TypeScript/tests/baselines/reference/tsxAttributeResolution8.js
2015-06-24 13:49:59 -07:00

17 lines
266 B
TypeScript

//// [tsxAttributeResolution8.tsx]
declare module JSX {
interface Element { }
interface IntrinsicElements {
test1: {x: string};
}
}
var x: any;
// Should be OK
<test1 {...x} />
//// [tsxAttributeResolution8.jsx]
var x;
// Should be OK
<test1 {...x}/>;