12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- "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, 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @interface PropertiesProviderAPI
- * @hideconstructor
- * @classdesc API class that is used to implement a properties provider for contributing a list of properties and property layouts.
- */
- define([], function () {
- var PropertiesProviderAPI = function () {
- function PropertiesProviderAPI() {
- _classCallCheck(this, PropertiesProviderAPI);
- }
- /**
- * @function PropertiesProviderAPI#getPropertyLayoutList
- * @description Gets the list of properties layout.
- * @return {Object[]}
- */
- PropertiesProviderAPI.prototype.getPropertyLayoutList = function getPropertyLayoutList() {};
- /**
- * @function PropertiesProviderAPI#getPropertyList
- * @description Gets the list of properties.
- * @return {Object[]}
- */
- PropertiesProviderAPI.prototype.getPropertyList = function getPropertyList() {};
- return PropertiesProviderAPI;
- }();
- return PropertiesProviderAPI;
- });
- //# sourceMappingURL=PropertiesProviderAPI.js.map
|