jderobot-ide-interface 0.2.99 → 0.2.101

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,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const HighlightedSection: ({ children }: {
2
- children: any;
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default HighlightedSection;
@@ -1,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const ImageRow: ({ children }: {
2
- children?: JSX.Element | JSX.Element[];
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default ImageRow;
@@ -1,4 +1,5 @@
1
+ import { ReactNode } from "react";
1
2
  declare const List: ({ children }: {
2
- children: any;
3
+ children: ReactNode;
3
4
  }) => JSX.Element;
4
5
  export default List;
@@ -1,6 +1,7 @@
1
+ import { ReactNode } from "react";
1
2
  declare const TheorySection: ({ title, href, children, }: {
2
3
  title: string;
3
4
  href: string;
4
- children: any;
5
+ children: ReactNode;
5
6
  }) => JSX.Element;
6
7
  export default TheorySection;
@@ -1,6 +1,7 @@
1
+ import { ReactNode } from "react";
1
2
  declare const TheorySubsection: ({ title, href, children, }: {
2
3
  title: string;
3
4
  href: string;
4
- children: any;
5
+ children: ReactNode;
5
6
  }) => JSX.Element;
6
7
  export default TheorySubsection;