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