12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- "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 ContentViewDomAPI
- * @hideconstructor
- * @classdesc API class that is used to access the content view dom
- */
- define([], function () {
- var ContentViewDomAPI = function () {
- function ContentViewDomAPI() {
- _classCallCheck(this, ContentViewDomAPI);
- }
- /**
- * @function ContentViewDomAPI#cloneNode
- * @description Clone and return the dom node used by the view
- * @return {Node} dom node
- */
- ContentViewDomAPI.prototype.cloneNode = function cloneNode() {};
- /**
- * @function ContentViewDomAPI#getNode
- * @description Return the dom node used by the view
- * @return {Node} dom node
- */
- ContentViewDomAPI.prototype.getNode = function getNode() {};
- /**
- * @function ContentViewDomAPI#getBoundingClientRect
- * @description Return the client rectangle of the dom node used by the content view
- * @return {Object} clientRect
- * @return {Number} clientRect.top
- * @return {Number} clientRect.left
- * @return {Number} clientRect.bottom
- * @return {Number} clientRect.right
- * @return {Number} clientRect.height
- * @return {Number} clientRect.width
- */
- ContentViewDomAPI.prototype.getBoundingClientRect = function getBoundingClientRect() {};
- return ContentViewDomAPI;
- }();
- return ContentViewDomAPI;
- });
- //# sourceMappingURL=ContentViewDomAPI.js.map
|