ToolbarAPI.js 950 B

1234567891011121314151617181920212223242526272829303132
  1. "use strict";
  2. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  3. /**
  4. * Licensed Materials - Property of IBM
  5. * IBM Cognos Products: BI (C) Copyright IBM Corp. 2020
  6. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. */
  8. define([], function () {
  9. /**
  10. * @interface ToolbarAPI
  11. * @hideconstructor
  12. * @classdesc The interface for Content Toolbar feature. It provides ways of managing the ODT of a content.
  13. */
  14. var ToolbarAPI = function () {
  15. function ToolbarAPI() {
  16. _classCallCheck(this, ToolbarAPI);
  17. }
  18. /**
  19. * @function ToolbarAPI#refresh
  20. * @description update the on-demand toolbar for a content
  21. */
  22. ToolbarAPI.prototype.refresh = function refresh() {};
  23. return ToolbarAPI;
  24. }();
  25. return ToolbarAPI;
  26. });
  27. //# sourceMappingURL=ToolbarAPI.js.map