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