swc/crates/swc_ecma_parser/tests/tsc/tsxElementResolution3.tsx
2022-02-04 17:08:38 +09:00

14 lines
202 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' />;