mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
|
// @jsx: preserve
|
||
|
declare namespace JSX {
|
||
|
interface IntrinsicElements {
|
||
|
'this:b': any;
|
||
|
'b:c': {
|
||
|
x: any
|
||
|
};
|
||
|
'a:b': any;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
<a:b></a:b>;
|
||
|
<b:c.x></b:c.x>;
|
||
|
<this:b></this:b>;
|