6989a98d75
- Arkitektur: docs/auth/passwordless-architecture.md - Backend: iom/quixzoom-auth-service/ (FastAPI + Redis) - Webb: quixzoom-market-pages/se/login/ (QR-kod + polling) - App: iom/quixzoom-app/src/features/auth/ (push + deep links) Flöde: QR-kod → app-godkännande → webb-inloggad
20 lines
390 B
JavaScript
20 lines
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
|