1234567891011121314151617181920212223242526272829303132333435 |
- "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 FeatureLoaderAPI
- * @hideconstructor
- * @classdesc API class that is used to register features
- */
- define([], function () {
- var FeatureLoaderAPI = function () {
- function FeatureLoaderAPI() {
- _classCallCheck(this, FeatureLoaderAPI);
- }
- /**
- * @function FeatureLoaderAPI#registerFeature
- * @description Register a feature
- * @param {String} name
- * @param {Object} feature
- */
- FeatureLoaderAPI.prototype.registerFeature = function registerFeature() {};
- return FeatureLoaderAPI;
- }();
- return FeatureLoaderAPI;
- });
- //# sourceMappingURL=FeatureLoaderAPI.js.map
|