@gx-design-vue/pro-utils 0.2.0-beta.56 → 0.2.0-beta.57

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.
@@ -2,6 +2,9 @@ import type { Slot, VNode, VNodeChild } from 'vue';
2
2
  export type DeepPartial<T> = T extends object ? {
3
3
  [P in keyof T]?: DeepPartial<T[P]>;
4
4
  } : T;
5
+ export interface Fn<T = any, R = T> {
6
+ (...arg: T[]): R;
7
+ }
5
8
  export type Nullable<T> = T | null;
6
9
  export type WithFalse<T> = T | false;
7
10
  export type RecordType = Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gx-design-vue/pro-utils",
3
- "version": "0.2.0-beta.56",
3
+ "version": "0.2.0-beta.57",
4
4
  "scripts": {
5
5
  "dev": "vite",
6
6
  "build": "vite build",