UNPKG

xrm-mock

Version:

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

16 lines 699 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LookupOptionsMock = void 0; var LookupOptionsMock = /** @class */ (function () { function LookupOptionsMock(components) { this.allowMultiSelect = components.allowMultiSelect; this.defaultEntityType = components.defaultEntityType; this.defaultViewId = components.defaultViewId; this.entityTypes = components.entityTypes; this.showBarcodeScanner = components.showBarcodeScanner; this.viewIds = components.viewIds; } return LookupOptionsMock; }()); exports.LookupOptionsMock = LookupOptionsMock; //# sourceMappingURL=lookupoptions.mock.js.map