UNPKG

xrm-mock

Version:

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

14 lines 462 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GridRowDataMock = void 0; var GridRowDataMock = /** @class */ (function () { function GridRowDataMock(entity) { this.entity = entity; } GridRowDataMock.prototype.getEntity = function () { return this.entity; }; return GridRowDataMock; }()); exports.GridRowDataMock = GridRowDataMock; //# sourceMappingURL=gridrowdata.mock.js.map