xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
33 lines • 1.83 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DateFormattingInfoMock = void 0;
var DateFormattingInfoMock = /** @class */ (function () {
function DateFormattingInfoMock(components) {
this.AmDesignator = components.AmDesignator;
this.AbbreviatedDayNames = components.AbbreviatedDayNames;
this.AbbreviatedMonthGenitiveNames = components.AbbreviatedMonthGenitiveNames;
this.AbbreviatedMonthNames = components.AbbreviatedMonthNames;
this.CalendarWeekRule = components.CalendarWeekRule;
this.Calendar = components.Calendar;
this.DateSeparator = components.DateSeparator;
this.DayNames = components.DayNames;
this.FirstDayOfWeek = components.FirstDayOfWeek;
this.FullDateTimePattern = components.FullDateTimePattern;
this.LongDatePattern = components.LongDatePattern;
this.LongTimePattern = components.LongTimePattern;
this.MonthDayPattern = components.MonthDayPattern;
this.MonthGenitiveNames = components.MonthGenitiveNames;
this.MonthNames = components.MonthNames;
this.PmDesignator = components.PmDesignator;
this.ShortDatePattern = components.ShortDatePattern;
this.ShortTimePattern = components.ShortTimePattern;
this.ShortestDayNames = components.ShortestDayNames;
this.SortableDateTimePattern = components.SortableDateTimePattern;
this.TimeSeparator = components.TimeSeparator;
this.UniversalSortableDateTimePattern = components.UniversalSortableDateTimePattern;
this.YearMonthPattern = components.YearMonthPattern;
}
return DateFormattingInfoMock;
}());
exports.DateFormattingInfoMock = DateFormattingInfoMock;
//# sourceMappingURL=dateformattinginfo.mock.js.map