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 SlideoutAPI
- * @hideconstructor
- * @classdesc Internal API class that is used to manage the properties API.
- */
- define([], function () {
- var PropertiesPaneAPI = function () {
- function PropertiesPaneAPI() {
- _classCallCheck(this, PropertiesPaneAPI);
- }
- /**
- * @function PropertiesPaneAPI#getProviderId
- * @description Get the provider id of the properties feature
- * @return {String}
- */
- PropertiesPaneAPI.prototype.getProviderId = function getProviderId() {};
- return PropertiesPaneAPI;
- }();
- return PropertiesPaneAPI;
- });
- //# sourceMappingURL=PropertiesPaneAPI.js.map
|