"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. */ define([], function () { /** * @interface * @hideconstructor * @classdesc Interface for the FullScreen feature */ var FullScreenAPI = function () { function FullScreenAPI() { _classCallCheck(this, FullScreenAPI); } /** * @function FullScreenAPI#enter * @description enter the full-screen mode */ FullScreenAPI.prototype.enter = function enter() {}; /** * @function FullScreenAPI#exit * @description exit the full-screen mode */ FullScreenAPI.prototype.exit = function exit() {}; /** * @function FullScreenAPI#isFullScreen * @description tell if is in the full-screen mode * @returns {boolean} true if is in the full-screen mode, false otherwise */ FullScreenAPI.prototype.isFullScreen = function isFullScreen() {}; return FullScreenAPI; }(); return FullScreenAPI; }); //# sourceMappingURL=FullScreenAPI.js.map