UNPKG

xrm-mock

Version:

A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.

17 lines 582 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UiLabelElementMock = void 0; var UiLabelElementMock = /** @class */ (function () { function UiLabelElementMock(label) { this.label = label; } UiLabelElementMock.prototype.getLabel = function () { return this.label; }; UiLabelElementMock.prototype.setLabel = function (label) { this.label = label; }; return UiLabelElementMock; }()); exports.UiLabelElementMock = UiLabelElementMock; //# sourceMappingURL=uilabelelement.mock.js.map