UNPKG

hansen-tool

Version:

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

24 lines 638 B
/** * @description 获取rgb随机颜色值,一般用于测试用 * @type * @default * @example randomRgbColor() */ export declare const randomRgbColor: () => string; /** * @description: 获取随机字符串 * @param {*} len 字符串长度 */ export declare const randomString: (len: number) => string; /** * @description: 生成指定范围随机数 * @param {*} min * @param {*} max */ export declare const randomRange: (min: number, max: number) => number; /** * @description: 数组中获取随机数 * @param {*} arr */ export declare const randomNum: (arr: any[]) => any; //# sourceMappingURL=randomValue.d.ts.map