recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
20 lines (19 loc) • 390 B
JavaScript
/**
* @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