idea-toolbox
Version:
IDEA's utility functions
10 lines (9 loc) • 462 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PushNotificationsPlatforms = void 0;
var PushNotificationsPlatforms;
(function (PushNotificationsPlatforms) {
PushNotificationsPlatforms["APNS"] = "APNS";
PushNotificationsPlatforms["APNS_SANDBOX"] = "APNS_SANDBOX";
PushNotificationsPlatforms["FCM"] = "FCM";
})(PushNotificationsPlatforms || (exports.PushNotificationsPlatforms = PushNotificationsPlatforms = {}));