@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
24 lines (23 loc) • 688 B
JavaScript
/**
* Typology of device
*/
export var SCDeviceTypeEnum;
(function (SCDeviceTypeEnum) {
SCDeviceTypeEnum["ANDROID"] = "Android";
SCDeviceTypeEnum["IOS"] = "iOS";
})(SCDeviceTypeEnum || (SCDeviceTypeEnum = {}));
/**
* Typology of Google Cloud Message Type
*/
export var SCDeviceGcmTypeEnum;
(function (SCDeviceGcmTypeEnum) {
SCDeviceGcmTypeEnum["GCM"] = "GCM";
SCDeviceGcmTypeEnum["FCM"] = "FCM";
})(SCDeviceGcmTypeEnum || (SCDeviceGcmTypeEnum = {}));
/**
* Typology of Google Cloud Message Type
*/
export var SCDeviceApnsTypeEnum;
(function (SCDeviceApnsTypeEnum) {
SCDeviceApnsTypeEnum["APNS"] = "APNS";
})(SCDeviceApnsTypeEnum || (SCDeviceApnsTypeEnum = {}));