/** * 判断是不是移动端 */ export declare function isMobile(): boolean; /** * 判断是不是微信环境 */ export declare function isWechat(): boolean; /** * 判断是不是企业微信 */ export declare function isWxWork(): boolean; /** * 判断是不是小程序 */ export declare function isMiniProgram(): boolean; /** * 判断是不是微信小程序 */ export declare function isWxMiniProgram(): boolean; /** * 判断是不是企微小程序 */ export declare function isWxWorkMiniProgram(): boolean; /** * 判断是不是微信浏览器 */ export declare function isWechatBrowser(): boolean; /** * 判断是不是企业微信浏览器 */ export declare function isWxWorkBrowser(): boolean; /** * 判断是不是平板 */ export declare function isTablet(): boolean; /** * 判断是不是手机 */ export declare function isPhone(): boolean; /** * 判断是不是PC */ export declare function isPC(): boolean; /** * 判断是不是Mac */ export declare function isMac(): boolean; /** * 判断是不是Windows */ export declare function isWindows(): boolean; /** * 判断是不是Linux */ export declare function isLinux(): boolean; /** * 判断是不是Android */ export declare function isAndroid(): boolean; /** * 判断是不是iOS */ export declare function isIOS(): boolean;