knight-web 2.0.23 → 2.0.25
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 +10 -3
- package/index.js +25 -7
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
export * from './frame';
|
|
2
|
-
import React from 'react';
|
|
3
|
-
import ReactDOM from 'react-dom';
|
|
4
|
-
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import * as ReactDOM from 'react-dom';
|
|
4
|
+
import * as jsxRuntime from 'react/jsx-runtime';
|
|
5
|
+
import * as jsxDevRuntime from 'react/jsx-dev-runtime';
|
|
6
|
+
export { React, ReactDOM, jsxRuntime, jsxDevRuntime };
|
|
7
|
+
export default React;
|
|
8
|
+
export declare const jsx: typeof jsxRuntime.jsx, jsxs: typeof jsxRuntime.jsxs, Fragment: React.ExoticComponent<{
|
|
9
|
+
children?: React.ReactNode | undefined;
|
|
10
|
+
}>;
|
|
11
|
+
export declare const jsxDEV: typeof jsxDevRuntime.jsxDEV;
|