@rr0/time
Version:
EDTF parsing
49 lines (41 loc) • 523 B
JavaScript
import { CalendarUnit } from "./CalendarUnit.mjs"
/**
* @interface
*/
export class TimeUnits {
/**
* @readonly
* @type CalendarUnit
*/
millisecond
/**
* @readonly
* @type CalendarUnit
*/
second
/**
* @readonly
* @type CalendarUnit
*/
minute
/**
* @readonly
* @type CalendarUnit
*/
hour
/**
* @readonly
* @type CalendarUnit
*/
day
/**
* @readonly
* @type CalendarUnit
*/
month
/**
* @readonly
* @type CalendarUnit
*/
year
}