UNPKG

xverse-components-utils

Version:

xverse components utils

16 lines (15 loc) 400 B
/** * @description UA 是移动端 */ declare const isMobileUA: boolean; /** * @description UA 是平板 */ declare const isTabletUA: boolean; /** * @description 除了确认是移动端的,对于折叠屏窄的屏幕,也当作移动端 */ declare const isMobile: boolean; declare const isIOS: boolean; declare const isPC: boolean; export { isMobile, isIOS, isMobileUA, isTabletUA, isPC };