@true-directive/base
Version:
The set of base classes for the TrueDirective Grid
20 lines (19 loc) • 518 B
JavaScript
/**
* Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
* @link https://truedirective.com/
* @license MIT
*/
var Locale = /** @class */ (function () {
function Locale() {
this.shortMonthNames = [];
this.longMonthNames = [];
this.shortDayNames = [];
this.longDayNames = [];
this.firstDayOfWeek = 0;
this.separators = [];
this.currency = '';
this.translates = {};
}
return Locale;
}());
export { Locale };