UNPKG

@toreda/time

Version:

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

11 lines (10 loc) 255 B
import type { Time } from '../../time'; /** * Check whether provided object defines all time methods required to * a Time object. * @param o * @returns * * @category Validators */ export declare function timeCheckMethods(o?: Time | null): boolean;