@openinc/parse-server-opendash
Version:
Parse Server Cloud Code for open.INC Stack.
14 lines (13 loc) • 1.12 kB
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.initNotifications = exports.getAllNotifications = exports.RegisteredNotification = exports.Notifications = void 0;
var Notifications_1 = require("./types/Notifications");
Object.defineProperty(exports, "Notifications", { enumerable: true, get: function () { return Notifications_1.Notifications; } });
var NotificationClass_1 = require("./states/NotificationClass");
Object.defineProperty(exports, "RegisteredNotification", { enumerable: true, get: function () { return NotificationClass_1.RegisteredNotification; } });
var registerNotification_1 = require("./services/registerNotification");
Object.defineProperty(exports, "getAllNotifications", { enumerable: true, get: function () { return registerNotification_1.getAllNotifications; } });
Object.defineProperty(exports, "initNotifications", { enumerable: true, get: function () { return __importDefault(registerNotification_1).default; } });
;