NotificationAPI.js 960 B

12345678910111213141516171819202122232425262728293031323334
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /*
  4. * Licensed Materials - Property of IBM
  5. * IBM Business Analytics (C) Copyright IBM Corp. 2019
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. /**
  9. * @class NotificationAPI
  10. * @hideconstructor
  11. * @classdesc API class that is used for notifications
  12. */
  13. define(function () {
  14. var NotificationAPI = function () {
  15. function NotificationAPI() {
  16. _classCallCheck(this, NotificationAPI);
  17. }
  18. /**
  19. * @function NotificationAPI#setMessage
  20. * @description shows a notification with a message
  21. * @return {String} message
  22. */
  23. NotificationAPI.prototype.setMessage = function setMessage() {};
  24. return NotificationAPI;
  25. }();
  26. return NotificationAPI;
  27. });
  28. //# sourceMappingURL=NotificationAPI.js.map