xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
14 lines • 667 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AddControlNotificationOptionsMock = void 0;
var AddControlNotificationOptionsMock = /** @class */ (function () {
function AddControlNotificationOptionsMock(components) {
this.actions = components.actions;
this.messages = components.messages;
this.notificationLevel = components.notificationLevel;
this.uniqueId = components.uniqueId;
}
return AddControlNotificationOptionsMock;
}());
exports.AddControlNotificationOptionsMock = AddControlNotificationOptionsMock;
//# sourceMappingURL=addcontrolnotificationoptions.mock.js.map