@mpen/jsxhtml 0.1.6

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/index.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ export * from './jsx-elements';
2
+ export * from './custom-components';
3
+ export { isJsxNode } from './jsx-node';
4
+ export { JsxNode } from './jsx-node';
5
+ import type { CommonProps, JsxComponent, JsxRenderable } from './types';
6
+ import { Fragment as _Fragment } from './jsx-runtime';
7
+ declare namespace React {
8
+ function createElement(tag: string | JsxComponent, props: CommonProps, ...children: JsxRenderable[]): import("./jsx-node").JsxNode;
9
+ const Fragment: typeof _Fragment;
10
+ }
11
+ export default React;