UNPKG

mugan86-chronometer

Version:

Simple library that contait chronometer with Counter and Count Down Timer

15 lines (14 loc) 595 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Timer constants to use in conversion and other operations */ var Timer; (function (Timer) { Timer[Timer["ONE_HOUR_SECONDS"] = 3600] = "ONE_HOUR_SECONDS"; Timer[Timer["DAY_HOURS"] = 24] = "DAY_HOURS"; Timer[Timer["ONE_MIN_SECONDS"] = 60] = "ONE_MIN_SECONDS"; Timer[Timer["ONE_DAY_SECONDS"] = 86400] = "ONE_DAY_SECONDS"; Timer[Timer["MS_PER_DAY"] = 86400000] = "MS_PER_DAY"; Timer[Timer["ONE_SECOND_IN_MS"] = 1000] = "ONE_SECOND_IN_MS"; })(Timer = exports.Timer || (exports.Timer = {}));