TypeScript/tests/cases/conformance/jsx/tsxParseTests1.tsx
2015-06-18 14:03:43 -07:00

9 lines
194 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements { div; span; }
}
var x = <div><div><span><div></div></span></div></div>;