UNPKG

bc-node-sdk

Version:

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

17 lines (16 loc) 571 B
/** * Enum {@link DeviceType} represents the various types of devices that a user can use to interact with the API. * * @readonly * @enum {number} * @property {number} UNKNOWN - The type of device is unknown. * @property {number} IOS - The device is an iOS device (iPhone or iPad). * @property {number} ANDROID - The device is an Android device (phone or tablet). * @property {number} WINDOWS_PHONE - The device is a Windows Phone device. */ export declare enum DeviceType { UNKNOWN = 0, IOS = 1, ANDROID = 2, WINDOWS_PHONE = 3 }