mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
11 lines
166 B
TypeScript
11 lines
166 B
TypeScript
|
//@filename: file.tsx
|
||
|
//@jsx: preserve
|
||
|
declare module JSX {
|
||
|
interface Element { }
|
||
|
interface IntrinsicElements { }
|
||
|
}
|
||
|
|
||
|
var div: any;
|
||
|
// Still an error
|
||
|
<div n='x' />;
|