123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- "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 ContentServiceabilityAPI
- * @hideconstructor
- * @classdesc API class that is used to return widget serviceability information
- */
- define([], function () {
- var ContentServiceabilityAPI = function () {
- function ContentServiceabilityAPI() {
- _classCallCheck(this, ContentServiceabilityAPI);
- }
- /**
- * @public
- * @function ContentServiceabilityApi#getContentInfo
- * @description get content info
- */
- ContentServiceabilityAPI.prototype.getContentInfo = function getContentInfo() {};
- /**
- * @public
- * @function ContentServiceabilityApi#showInfo
- * @description display an overlay with info on the DOM of a content
- */
- ContentServiceabilityAPI.prototype.showInfo = function showInfo() {};
- /**
- * @public
- * @function ContentServiceabilityApi#hideInfo
- * @description hide an overlay with info on the DOM of a content
- */
- ContentServiceabilityAPI.prototype.hideInfo = function hideInfo() {};
- /**
- * @public
- * @function ContentServiceabilityAPI#isInfoVisible
- * @description check if there is an overlay with info on a content
- * @return {boolean} True indicates the info is being displayed on DOM,
- * false otherwise.
- */
- ContentServiceabilityAPI.prototype.isInfoVisible = function isInfoVisible() {};
- return ContentServiceabilityAPI;
- }();
- return ContentServiceabilityAPI;
- });
- //# sourceMappingURL=ContentServiceabilityAPI.js.map
|