swc/crates/swc_ecma_parser/tests/tsc/tsxElementResolution4.tsx

19 lines
243 B
TypeScript
Raw Normal View History

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