declare module JSX {
|
|
type Element = { toHtmlStr(): string };
|
|
interface IntrinsicElements {
|
|
[elemName: string]: any;
|
|
}
|
|
}
|