/**
 * Supported time units.
 *
 * @category Time Units
 */
export type TimeUnit = 'm' | 's' | 'h' | 'd' | 'mo' | 'w' | 'ms' | 'y' | 'μs';
