@tomorrowevening/hermes 0.0.38 → 0.0.39

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/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "module": "./dist/hermes.esm.js",
8
8
  "types": "./types/index.d.ts",
9
9
  "type": "module",
10
- "version": "0.0.38",
10
+ "version": "0.0.39",
11
11
  "homepage": "https://github.com/tomorrowevening/hermes#readme",
12
12
  "bugs": {
13
13
  "url": "https://github.com/tomorrowevening/hermes/issues"
@@ -1,11 +1,3 @@
1
- import { Component, ReactNode } from 'react';
2
1
  import '../scss/_sidePanel.scss';
3
2
  import { SidePanelState } from './types';
4
- export default class SidePanel extends Component<SidePanelState> {
5
- private three;
6
- constructor(props: SidePanelState);
7
- componentWillUnmount(): void;
8
- render(): ReactNode;
9
- private setScene;
10
- get componentState(): SidePanelState;
11
- }
3
+ export default function SidePanel(props: SidePanelState): import("react/jsx-runtime").JSX.Element;