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