1234567891011121314151617181920212223242526272829303132333435363738394041 |
- "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. 2018, 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- /**
- * @class AlignAPI
- * @hideconstructor
- * @classdesc API class that is used to apply the align action.
- */
- define([], function () {
- var AlignAPI = function () {
- function AlignAPI() {
- _classCallCheck(this, AlignAPI);
- }
- /**
- * @function AlignAPI#applyAction
- * @description Apply alignment action.
- * @param {Object[]} selection The selected icon object from align property dialog
- *
- * @example
- * [{
- * layoutIds: ['model0000016a0890313c_00000000', 'model0000016a089069b7_00000000']
- * name: 'right',
- * value: 'align-object-right_16'
- * }]
- */
- AlignAPI.prototype.applyAction = function applyAction() {};
- return AlignAPI;
- }();
- return AlignAPI;
- });
- //# sourceMappingURL=AlignAPI.js.map
|