UNPKG

@toreda/time

Version:

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

11 lines (10 loc) 320 B
import type { LogLike } from './log/like'; import type { Time } from './time'; /** * Create Time object using minutes. * @param initial Object's initial value (in minutes). * @returns Time object * * @category Time Conversions */ export declare function minutes(initial: number | string, log?: LogLike): Time;