UNPKG

units-converter-ts

Version:
5 lines (4 loc) 209 B
import { IMeasure } from '../types'; export type paceSystems = 'metric' | 'imperial'; export type paceUnits = 'min/km' | 's/m' | 'min/mi' | 's/ft'; export declare const pace: IMeasure<paceSystems, paceUnits>;