UNPKG

hansen-tool

Version:

web的一些工具集函数,包括(树形菜单转换、本地存储、文件下载、文件大小单位转换、金额格式化、浏览器判断)等

11 lines 361 B
/** * @description: 对某一个函数延迟执行, 异步 * @param {*} time 延迟时间 */ export declare const sleepFn: (time?: number, fn?: () => void) => Promise<unknown>; /** * @description: 直接延迟睡眠,异步 * @param {*} ms 延迟时间 */ export declare const sleep: (ms?: number) => Promise<unknown>; //# sourceMappingURL=sleep.d.ts.map