UNPKG

@rr0/time

Version:
42 lines 795 B
/** * @interface */ export class TimeUnits { /** * @readonly * @type CalendarUnit */ readonly millisecond: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly second: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly minute: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly hour: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly day: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly month: CalendarUnit; /** * @readonly * @type CalendarUnit */ readonly year: CalendarUnit; } import { CalendarUnit } from "./CalendarUnit.mjs"; //# sourceMappingURL=TimeUnits.d.mts.map