@partex/one-core 2.0.104 → 2.0.106

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
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.0.104",
2
+ "version": "2.0.106",
3
3
  "author": {
4
4
  "name": "DotWho"
5
5
  },
@@ -1,15 +0,0 @@
1
- export type Fn = (...[]: any[]) => any;
2
- /**
3
- * 防抖
4
- * @param fn
5
- * @param delay
6
- * @returns
7
- */
8
- export declare const debounce: (fn: Fn, delay: number) => () => void;
9
- /**
10
- * 节流
11
- * @param fn
12
- * @param delay
13
- * @returns
14
- */
15
- export declare const throttle: (fn: Fn, wait?: number) => Fn;