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

14 lines
187 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements {
[x: string]: any;
}
}
// OK
<div />;
// OK
<span />;