/** * Note that month and year do not have fixed durations, and hence are excluded * from this file. */ declare const MS_PER_SECOND = 1000; declare const MS_PER_MINUTE = 60000; declare const MS_PER_HOUR = 3600000; declare const MS_PER_DAY = 86400000; declare const MS_PER_WEEK = 604800000; declare const SECONDS_PER_MINUTE = 60; declare const SECONDS_PER_HOUR = 3600; declare const SECONDS_PER_DAY = 86400; declare const SECONDS_PER_WEEK = 604800; declare const MINUTES_PER_HOUR = 60; declare const MINUTES_PER_DAY = 1440; declare const MINUTES_PER_WEEK = 10080; declare const HOURS_PER_DAY = 24; declare const HOURS_PER_WEEK = 168; export { HOURS_PER_DAY, HOURS_PER_WEEK, MINUTES_PER_DAY, MINUTES_PER_HOUR, MINUTES_PER_WEEK, MS_PER_DAY, MS_PER_HOUR, MS_PER_MINUTE, MS_PER_SECOND, MS_PER_WEEK, SECONDS_PER_DAY, SECONDS_PER_HOUR, SECONDS_PER_MINUTE, SECONDS_PER_WEEK };