UNPKG

bc-node-sdk

Version:

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

8 lines (7 loc) 198 B
import { DeviceType } from "../../enums"; export default interface DeviceDetection { isMobile: boolean; isDesktop: boolean; isIPadorTablet: boolean; deviceType: DeviceType; }