12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- "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 RenderContextAPI
- * @hideconstructor
- * @classdesc defines the render context API available in task callbacks
- */
- define([], function () {
- var RenderContextAPI = function () {
- function RenderContextAPI() {
- _classCallCheck(this, RenderContextAPI);
- }
- /**
- * @public
- * @function RenderContextAPI#getSequenceId
- * @description gets the sequence id
- * @return {Integer} sequence id
- */
- RenderContextAPI.prototype.getSequenceId = function getSequenceId() {};
- /**
- * @public
- * @function RenderContextAPI#getData
- * @description retrieves a property
- * @param {string} name - name of the property
- * @return {Object} the property data; undefined when name is undefined or no data exists for the given name
- */
- RenderContextAPI.prototype.getData = function getData() {};
- return RenderContextAPI;
- }();
- return RenderContextAPI;
- });
- //# sourceMappingURL=RenderContextAPI.js.map
|