UNPKG

units-converter-ts

Version:
5 lines (4 loc) 229 B
import { IMeasure } from '../types'; export type temperatureSystems = 'metric' | 'imperial'; export type temperatureUnits = 'C' | 'K' | 'F' | 'R'; export declare const temperature: IMeasure<temperatureSystems, temperatureUnits>;