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