mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 11:42:13 +03:00
19 lines
243 B
TypeScript
19 lines
243 B
TypeScript
|
//@filename: file.tsx
|
||
|
//@jsx: preserve
|
||
|
declare module JSX {
|
||
|
interface Element { }
|
||
|
interface IntrinsicElements {
|
||
|
div: { n: string; };
|
||
|
span: { m: string; };
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// OK
|
||
|
<div n='x' />;
|
||
|
|
||
|
// OK
|
||
|
<span m='ok' />;
|
||
|
|
||
|
// Error
|
||
|
<span q='' />;
|