123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var ContentServiceabilityAPI = function () {
- function ContentServiceabilityAPI() {
- _classCallCheck(this, ContentServiceabilityAPI);
- }
-
- ContentServiceabilityAPI.prototype.getContentInfo = function getContentInfo() {};
-
- ContentServiceabilityAPI.prototype.showInfo = function showInfo() {};
-
- ContentServiceabilityAPI.prototype.hideInfo = function hideInfo() {};
-
- ContentServiceabilityAPI.prototype.isInfoVisible = function isInfoVisible() {};
- return ContentServiceabilityAPI;
- }();
- return ContentServiceabilityAPI;
- });
|