"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 VisExpandModeAPI * @hideconstructor * @classdesc API class that is used to get content for focus mode */ define([], function () { var VisExpandModeAPI = function () { function VisExpandModeAPI() { _classCallCheck(this, VisExpandModeAPI); } /** * @function VisExpandModeAPI#renderExpandedModeContent * @description get the expand mode content for a given container * @param {DomNode} containerNode - the container node */ VisExpandModeAPI.prototype.renderExpandedModeContent = function renderExpandedModeContent() {}; /** * @function VisExpandModeAPI#restore * @description restore to pre-expanded mode */ VisExpandModeAPI.prototype.restore = function restore() {}; return VisExpandModeAPI; }(); return VisExpandModeAPI; }); //# sourceMappingURL=VisExpandModeAPI.js.map