@tomorrowevening/hermes 0.0.156 → 0.0.158

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.156",
10
+ "version": "0.0.158",
11
11
  "homepage": "https://github.com/tomorrowevening/hermes#readme",
12
12
  "bugs": {
13
13
  "url": "https://github.com/tomorrowevening/hermes/issues"
@@ -1,2 +1,2 @@
1
1
  import { ChildObjectProps } from './types';
2
- export default function ChildObject(props: ChildObjectProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function ChildObject(props: ChildObjectProps): import("react/jsx-runtime").JSX.Element | null;
@@ -1,8 +1,4 @@
1
- export declare enum QualityType {
2
- 'High' = 0,
3
- 'Medium' = 1,
4
- 'Low' = 2
5
- }
1
+ export type QualityType = 'High' | 'Medium' | 'Low';
6
2
  export type AppSettings = {
7
3
  dpr: number;
8
4
  fps: number;