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