12345678910111213141516171819202122232425262728293031323334 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define(function () {
- var NotificationAPI = function () {
- function NotificationAPI() {
- _classCallCheck(this, NotificationAPI);
- }
-
- NotificationAPI.prototype.setMessage = function setMessage() {};
- return NotificationAPI;
- }();
- return NotificationAPI;
- });
|