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

14 lines
215 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements {
[x: string]: { n: string; };
}
}
// OK
<div n='x' />;
// Error
<span w='err' />;