@tomaszjarosz/react-visualizers 0.4.12 → 0.4.14
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/README.md +5 -3
- package/dist/index.cjs +1046 -199
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/index.js +1046 -199
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +24 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -235,6 +235,21 @@ declare interface HashTableVisualizerProps {
|
|
|
235
235
|
className?: string;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
+
export declare const HeapInterviewVisualizer: default_2.NamedExoticComponent<HeapInterviewVisualizerProps>;
|
|
239
|
+
|
|
240
|
+
declare interface HeapInterviewVisualizerProps {
|
|
241
|
+
showControls?: boolean;
|
|
242
|
+
className?: string;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export declare const HeapVisualizer: default_2.NamedExoticComponent<HeapVisualizerProps>;
|
|
246
|
+
|
|
247
|
+
declare interface HeapVisualizerProps {
|
|
248
|
+
showControls?: boolean;
|
|
249
|
+
showCode?: boolean;
|
|
250
|
+
className?: string;
|
|
251
|
+
}
|
|
252
|
+
|
|
238
253
|
export declare const HelpPanel: default_2.FC;
|
|
239
254
|
|
|
240
255
|
export declare const ImmutableCollectionsVisualizer: default_2.NamedExoticComponent<ImmutableCollectionsVisualizerProps>;
|