TypeScript/tests/cases/conformance/jsx/tsxAttributeResolution8.tsx
2015-06-24 13:49:59 -07:00

12 lines
197 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements {
test1: {x: string};
}
}
var x: any;
// Should be OK
<test1 {...x} />