UNPKG

@toreda/time

Version:

Simple, small footprint library for common time operations and converting between units of time.

16 lines (15 loc) 271 B
import type { TimeUnit } from '../unit'; /** * @category Time Units */ export interface TimeUnitLabel { timeUnit: TimeUnit; full: { singular: string; plural: string; }; short: { singular: string; plural: string; }; }