@cripty2001/utils 0.0.152 → 0.0.154

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,10 +1,9 @@
1
1
  import type React from "react";
2
- import type { AppserverData } from "../Appserver/client";
3
2
  import type { Dispatcher } from "../Dispatcher";
4
- export type LoaderProps<T extends AppserverData> = {
3
+ export type LoaderProps<T> = {
5
4
  data: Dispatcher<unknown, T>;
6
5
  children: React.ComponentType<{
7
6
  data: T;
8
7
  }>;
9
8
  };
10
- export default function Loader<T extends AppserverData>(props: LoaderProps<T>): import("react/jsx-runtime").JSX.Element;
9
+ export default function Loader<T>(props: LoaderProps<T>): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cripty2001/utils",
3
- "version": "0.0.152",
3
+ "version": "0.0.154",
4
4
  "description": "Internal Set of utils. If you need them use them, otherwise go to the next package ;)",
5
5
  "homepage": "https://github.com/cripty2001/utils#readme",
6
6
  "bugs": {
@@ -22,7 +22,7 @@
22
22
  "dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@cripty2001/whispr": "^0.2.3",
25
+ "@cripty2001/whispr": "^0.3.1",
26
26
  "lodash": "^4.17.21"
27
27
  },
28
28
  "devDependencies": {