You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
390 B
20 lines
390 B
/**
|
|
* @category Types
|
|
* @summary Duration object
|
|
*
|
|
* @description
|
|
* Duration object.
|
|
*
|
|
* @typedef {Object} Duration
|
|
*
|
|
* @property {number} [years]
|
|
* @property {number} [months]
|
|
* @property {number} [weeks]
|
|
* @property {number} [days]
|
|
* @property {number} [hours]
|
|
* @property {number} [minutes]
|
|
* @property {number} [seconds]
|
|
*/
|
|
const Duration = {}
|
|
module.exports = Duration
|