@idscan/onboarding
Version:
Wrapper of the IDVC library for DIVE Online.
16 lines (15 loc) • 472 B
TypeScript
export declare const isiOS: () => boolean;
export declare const checkTouchPoints: () => boolean;
export declare const checkIsTouchScreen: () => boolean;
/**
*
* @param {Number} maxWidth - preferable max width device
*/
export declare const isMobile: () => {
isMobileUserAgent: () => boolean;
isTouchable: () => boolean;
isTouchScreen: () => boolean;
isSurface: () => boolean;
};
declare const checkIfMobile: () => boolean;
export default checkIfMobile;