@virentia/inspector 0.1.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.
@@ -0,0 +1,13 @@
1
+ import { Root } from "react-dom/client";
2
+ import { ReactElement } from "react";
3
+
4
+ //#region lib/client/modules/inspector/InspectorApp.d.ts
5
+ interface VirentiaInspectorProps {
6
+ channel?: string;
7
+ }
8
+ declare function VirentiaInspector(props: VirentiaInspectorProps): ReactElement;
9
+ //#endregion
10
+ //#region lib/client/index.d.ts
11
+ declare function mountVirentiaInspector(container: Element | DocumentFragment, props?: VirentiaInspectorProps): Root;
12
+ //#endregion
13
+ export { VirentiaInspector, type VirentiaInspectorProps, mountVirentiaInspector };
@@ -0,0 +1,13 @@
1
+ import { ReactElement } from "react";
2
+ import { Root } from "react-dom/client";
3
+
4
+ //#region lib/client/modules/inspector/InspectorApp.d.ts
5
+ interface VirentiaInspectorProps {
6
+ channel?: string;
7
+ }
8
+ declare function VirentiaInspector(props: VirentiaInspectorProps): ReactElement;
9
+ //#endregion
10
+ //#region lib/client/index.d.ts
11
+ declare function mountVirentiaInspector(container: Element | DocumentFragment, props?: VirentiaInspectorProps): Root;
12
+ //#endregion
13
+ export { VirentiaInspector, type VirentiaInspectorProps, mountVirentiaInspector };