@true-directive/base
Version:
The set of base classes for the TrueDirective Grid
24 lines (23 loc) • 686 B
JavaScript
var MaskSectionType = /** @class */ (function () {
function MaskSectionType() {
this.selectors = [];
this.numeric = false;
this.min = null;
this.max = null;
// Can be useful if section is not integer
this.minL = null;
this.maxL = null;
// Which part of the date is represented with this section
// d - day
// m - month
// y - year
// h - hour (0 - 12)
// H - hour (0 - 24)
// mi - minutes
// s - seconds
// ms - milliseconds
this.datePart = null;
}
return MaskSectionType;
}());
export { MaskSectionType };