UNPKG

units-converter-ts

Version:
5 lines (4 loc) 254 B
import { IMeasure } from '../types'; export type pressureSystems = 'metric' | 'imperial'; export type pressureUnits = 'Pa' | 'hPa' | 'kPa' | 'bar' | 'MPa' | 'torr' | 'psi' | 'ksi'; export declare const pressure: IMeasure<pressureSystems, pressureUnits>;