UNPKG

units-converter-ts

Version:
5 lines (4 loc) 219 B
import { IMeasure } from '../types'; export type speedSystems = 'metric' | 'imperial'; export type speedUnits = 'km/h' | 'm/s' | 'ft/s' | 'mi/h' | 'knot'; export declare const speed: IMeasure<speedSystems, speedUnits>;