sidakram-bippy 0.2.24
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +7 -0
- package/README.md +617 -0
- package/dist/chunk-347RWTP3.js +736 -0
- package/dist/chunk-475IQUDX.cjs +878 -0
- package/dist/chunk-7ROEST76.js +807 -0
- package/dist/chunk-GVWERSAB.cjs +803 -0
- package/dist/chunk-HQYIPSLJ.cjs +20 -0
- package/dist/chunk-JOS5RHYU.cjs +20 -0
- package/dist/chunk-N23WFCSF.js +18 -0
- package/dist/chunk-XX7FLNAQ.js +18 -0
- package/dist/core.cjs +270 -0
- package/dist/core.d.cts +275 -0
- package/dist/core.d.ts +275 -0
- package/dist/core.js +1 -0
- package/dist/experiments/inspect.cjs +1732 -0
- package/dist/experiments/inspect.d.cts +11 -0
- package/dist/experiments/inspect.d.ts +11 -0
- package/dist/experiments/inspect.js +1721 -0
- package/dist/experiments/shrinkwrap.cjs +374 -0
- package/dist/experiments/shrinkwrap.d.cts +10 -0
- package/dist/experiments/shrinkwrap.d.ts +10 -0
- package/dist/experiments/shrinkwrap.js +369 -0
- package/dist/index.cjs +271 -0
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.global.js +9 -0
- package/dist/index.js +2 -0
- package/dist/shrinkwrap.global.js +9 -0
- package/package.json +124 -0
@@ -0,0 +1,11 @@
|
|
1
|
+
import React__default, { ReactNode } from 'react';
|
2
|
+
|
3
|
+
interface InspectorProps {
|
4
|
+
enabled?: boolean;
|
5
|
+
children?: ReactNode;
|
6
|
+
dangerouslyRunInProduction?: boolean;
|
7
|
+
}
|
8
|
+
declare const RawInspector: React__default.MemoExoticComponent<({ enabled, dangerouslyRunInProduction }: InspectorProps) => React__default.JSX.Element | null>;
|
9
|
+
declare const Inspector: React__default.MemoExoticComponent<({ ...props }: InspectorProps) => React__default.ReactPortal | null>;
|
10
|
+
|
11
|
+
export { Inspector, type InspectorProps, RawInspector, Inspector as default };
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import React__default, { ReactNode } from 'react';
|
2
|
+
|
3
|
+
interface InspectorProps {
|
4
|
+
enabled?: boolean;
|
5
|
+
children?: ReactNode;
|
6
|
+
dangerouslyRunInProduction?: boolean;
|
7
|
+
}
|
8
|
+
declare const RawInspector: React__default.MemoExoticComponent<({ enabled, dangerouslyRunInProduction }: InspectorProps) => React__default.JSX.Element | null>;
|
9
|
+
declare const Inspector: React__default.MemoExoticComponent<({ ...props }: InspectorProps) => React__default.ReactPortal | null>;
|
10
|
+
|
11
|
+
export { Inspector, type InspectorProps, RawInspector, Inspector as default };
|