xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
15 lines • 635 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CaptureImageOptionsMock = void 0;
var CaptureImageOptionsMock = /** @class */ (function () {
function CaptureImageOptionsMock(components) {
this.allowEdit = components.allowEdit;
this.height = components.height;
this.preferFrontCamera = components.preferFrontCamera;
this.quality = components.quality;
this.width = components.width;
}
return CaptureImageOptionsMock;
}());
exports.CaptureImageOptionsMock = CaptureImageOptionsMock;
//# sourceMappingURL=captureimageoptions.mock.js.map