12345678910111213141516171819202122232425262728293031323334 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- /*
- * Licensed Materials - Property of IBM
- * IBM Business Analytics (C) Copyright IBM Corp. 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class NotificationAPI
- * @hideconstructor
- * @classdesc API class that is used for notifications
- */
- define(function () {
- var NotificationAPI = function () {
- function NotificationAPI() {
- _classCallCheck(this, NotificationAPI);
- }
- /**
- * @function NotificationAPI#setMessage
- * @description shows a notification with a message
- * @return {String} message
- */
- NotificationAPI.prototype.setMessage = function setMessage() {};
- return NotificationAPI;
- }();
- return NotificationAPI;
- });
- //# sourceMappingURL=NotificationAPI.js.map
|