UNPKG

bc-node-sdk

Version:

BetterCommerce's NodeJS SDK encapsulates the base framework for all the Next.js applications.

9 lines (8 loc) 315 B
import { DeviceType } from "../../enums"; export default interface IDeviceInfo { readonly isMobile: boolean | undefined; readonly isOnlyMobile: boolean | undefined; readonly isDesktop: boolean | undefined; readonly isIPadorTablet: boolean | undefined; readonly deviceType: DeviceType; }