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

12 lines
186 B
TypeScript

//@filename: file.tsx
//@jsx: preserve
declare module JSX {
interface Element { }
interface IntrinsicElements {
test1: {x: string};
}
}
var x: any;
// Should be OK
<test1 {...x} />