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