/** * This module provides functions and types related to timing in JavaScript * engines. * * It is not meant for treating with time as data, see the popular moment * module for that. */ /** * Milliseconds type. */ export type Milliseconds = number; /** * Seconds type. */ export type Seconds = number; /** * Minutes type. */ export type Minutes = number; /** * Hours type. */ export type Hours = number; /** * Days type. */ export type Days = number; /** * Months type. */ export type Months = number; /** * Years type. */ export type Years = number;