mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
12 lines
186 B
TypeScript
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} /> |