UNPKG

hansen-tool

Version:

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

13 lines 376 B
/** * @description: 设备的判断,判断是移动端还是PC端的用户 * 最主要的是利用header头部的userAgent */ export declare const detectDeviceType: () => "Mobile" | "PC" | "Unknown"; /** * @description: 判断浏览器内核 */ export declare const checkBrowser: () => { type: any; version: number; }; //# sourceMappingURL=checkBrowser.d.ts.map