| export * from './utils/debounce'; | ||
| export * from './utils/throttle'; |
| export type AnyFunction = (...args: any[]) => void; |
| import { AnyFunction } from "../types/types"; | ||
| export declare const debounce: (func: AnyFunction, delay: number) => AnyFunction; |
| import { AnyFunction } from "../types/types"; | ||
| export declare const throttle: (func: AnyFunction, interval: number) => AnyFunction; |
+2
-2
| { | ||
| "name": "time-loom", | ||
| "version": "1.1.0", | ||
| "version": "1.1.1", | ||
| "description": "", | ||
| "main": "dist/index.js", | ||
| "types": "src/index.d.ts", | ||
| "types": "dist/index.d.ts", | ||
| "files": [ | ||
@@ -8,0 +8,0 @@ "dist/**/*" |
6215
7.01%15
36.36%54
14.89%