123456789101112131415161718192021222324252627282930313233343536373839 |
- "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 CoachMarkAPI
- * @hideconstructor
- * @classdesc API class to allow assets to implement independent functionality for coachmarks
- */
- define([], function () {
- var CoachMarkAPI = function () {
- function CoachMarkAPI() {
- _classCallCheck(this, CoachMarkAPI);
- }
- /**
- * Add a coachmark dynamically to the UI.
- * @public
- * @param options - The options parameter takes the following values to add the coachmark:
- * id: the identifier for the element to attach the coachmark to,
- * domElement: the element to attach the coachmark to,
- * title: the title string for the coachmark,
- * content: the content string for the coachmark
- * @description shows the contents of the current asset before printing
- */
- CoachMarkAPI.prototype.addCoachMark = function addCoachMark() {};
- return CoachMarkAPI;
- }();
- return CoachMarkAPI;
- });
- //# sourceMappingURL=CoachMarkAPI.js.map
|