mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 19:21:33 +03:00
14 lines
199 B
TypeScript
14 lines
199 B
TypeScript
|
//@filename: file.tsx
|
||
|
//@jsx: react
|
||
|
|
||
|
declare module JSX {
|
||
|
interface Element { }
|
||
|
interface IntrinsicElements {
|
||
|
[s: string]: any;
|
||
|
}
|
||
|
}
|
||
|
declare var React: any;
|
||
|
|
||
|
<>hi</div> // Error
|
||
|
|
||
|
<>eof // Error
|