@progress/kendo-date-math
Version:
Kendo UI typescript package exporting functions for Date manipulations
16 lines (15 loc) • 408 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MS_PER_DAY = exports.MS_PER_HOUR = exports.MS_PER_MINUTE = void 0;
/**
* The number of milliseconds in one minute.
*/
exports.MS_PER_MINUTE = 60000;
/**
* The number of milliseconds in one hour.
*/
exports.MS_PER_HOUR = 3600000;
/**
* The number of milliseconds in one standard day.
*/
exports.MS_PER_DAY = 86400000;