vite-plugin-html-pages 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/jsx-runtime.d.ts +13 -1
- package/package.json +1 -1
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -15,4 +15,16 @@ declare function jsx(
|
|
|
15
15
|
declare const jsxs: typeof jsx;
|
|
16
16
|
declare const jsxDEV: typeof jsx;
|
|
17
17
|
|
|
18
|
-
|
|
18
|
+
declare namespace JSX {
|
|
19
|
+
type Element = string;
|
|
20
|
+
|
|
21
|
+
interface ElementChildrenAttribute {
|
|
22
|
+
children: {};
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
interface IntrinsicElements {
|
|
26
|
+
[elemName: string]: Record<string, unknown>;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export { type Child, Fragment, JSX, type PrimitiveChild, type Props, jsx, jsxDEV, jsxs };
|