UNPKG

xrm-mock

Version:

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

27 lines 1.3 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EntityFormOptionsMock = void 0; var EntityFormOptionsMock = /** @class */ (function () { function EntityFormOptionsMock(components) { this.cmdbar = components.cmdbar; this.createFromEntity = components.createFromEntity; this.entityId = components.entityId; this.entityName = components.entityName; this.formId = components.formId; this.height = components.height; this.isCrossEntityNavigate = components.isCrossEntityNavigate; this.isOfflineSyncError = components.isOfflineSyncError; this.navBar = components.navBar; this.openInNewWindow = components.openInNewWindow; this.windowPosition = components.windowPosition; this.processId = components.processId; this.processInstanceId = components.processInstanceId; this.relationship = components.relationship; this.selectedStageId = components.selectedStageId; this.useQuickCreateForm = components.useQuickCreateForm; this.width = components.width; } return EntityFormOptionsMock; }()); exports.EntityFormOptionsMock = EntityFormOptionsMock; //# sourceMappingURL=entityformoptions.mock.js.map