1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- "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. 2020
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @interface RendererAPI
- * @hideconstructor
- * @classdesc API class that is used to render dashboard content.
- * @example content.getFeature('Renderer')
- */
- define([], function () {
- var RendererAPI = function () {
- function RendererAPI() {
- _classCallCheck(this, RendererAPI);
- }
- /**
- * @function RendererAPI#render
- * @description Renders the content at the provided domNode. StateAPI can be used to wait for completion.
- * @param {HTMLElement} domNode Specifies where the content is rendered
- * @example await content.getFeature('Renderer').render(domNode);
- */
- RendererAPI.prototype.render = function render() {};
- /**
- * @function RendererAPI#destroy
- * @description Destroys the view and removes event listeners.
- */
- RendererAPI.prototype.destroy = function destroy() {};
- return RendererAPI;
- }();
- return RendererAPI;
- });
- //# sourceMappingURL=RendererAPI.js.map
|