"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 Cognos Products: BI (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 ToolbarAPI * @hideconstructor * @classdesc The interface for Content Toolbar feature. It provides ways of managing the ODT of a content. */ var ToolbarAPI = function () { function ToolbarAPI() { _classCallCheck(this, ToolbarAPI); } /** * @function ToolbarAPI#refresh * @description update the on-demand toolbar for a content */ ToolbarAPI.prototype.refresh = function refresh() {}; return ToolbarAPI; }(); return ToolbarAPI; }); //# sourceMappingURL=ToolbarAPI.js.map