jderobot-ide-interface 0.2.48 → 0.2.50

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.
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { Layout } from "Types";
2
3
  export declare const ResizableHoriz: {
3
4
  ({ width, min, max, snap, children, }: {
@@ -39,8 +40,8 @@ export declare const ResizableLayout: ({ baseWidth, maxWidth, showExplorer, layo
39
40
  splashIcon: JSX.Element;
40
41
  children: any[];
41
42
  }) => JSX.Element;
42
- export declare const CollapsableResizableColumn: ({ state, splashIcon, children, }: {
43
+ export declare const CollapsableResizableColumn: React.NamedExoticComponent<{
43
44
  state: boolean[];
44
45
  splashIcon: JSX.Element;
45
46
  children: any[];
46
- }) => JSX.Element;
47
+ }>;
@@ -12,5 +12,5 @@ interface StyledStatusBarButtonProps {
12
12
  hoverColor?: string;
13
13
  animate?: boolean;
14
14
  }
15
- export declare const StyledStatusBarButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledStatusBarButtonProps>> & string;
15
+ export declare const StyledStatusBarButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, StyledStatusBarButtonProps>> & string;
16
16
  export {};