mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 10:12:42 +03:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
//@filename: file.tsx
|
|
//@jsx: preserve
|
|
declare module JSX {
|
|
interface Element { }
|
|
interface IntrinsicElements { div; span; }
|
|
}
|
|
|
|
var x = <div><div><span><div></div></span></div></div>;
|