UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

6 lines (5 loc) 217 B
import { TimeUnit } from './index.js'; /** * Converts a value of a given TimeUnit into another TimeUnit */ export declare function convertTimeUnit(value: number, sourceUnit: TimeUnit, resultUnit: TimeUnit): number;