1234567891011121314151617181920212223242526272829303132333435 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var FeatureLoaderAPI = function () {
- function FeatureLoaderAPI() {
- _classCallCheck(this, FeatureLoaderAPI);
- }
-
- FeatureLoaderAPI.prototype.registerFeature = function registerFeature() {};
- return FeatureLoaderAPI;
- }();
- return FeatureLoaderAPI;
- });
|