mirror of
https://github.com/swc-project/swc.git
synced 2024-11-30 15:23:33 +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>; |