Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- /**
- * @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
|