123456789101112131415161718192021222324252627282930313233343536373839 |
- "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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define([], function () {
- /**
- * @interface ContentCapabilitiesAPI
- * @classdesc public API interface to retrieve content capabilities
- */
- var ContentCapabilitiesAPI = function () {
- function ContentCapabilitiesAPI() {
- _classCallCheck(this, ContentCapabilitiesAPI);
- }
- /**
- * @public
- * @description Get Capabilities of a registered content type
- * @returns {Object} [object = {
- * 'selection': false,
- * 'title': false,
- * 'move': false,
- * 'resize': false
- * }]
- * returns capabilities of a registered content type.
- */
- ContentCapabilitiesAPI.prototype.getCapabilities = function getCapabilities() {};
- return ContentCapabilitiesAPI;
- }();
- return ContentCapabilitiesAPI;
- });
- //# sourceMappingURL=ContentCapabilitiesAPI.js.map
|