psychart
Version:
View air conditions on a psychrometric chart
19 lines (18 loc) • 610 B
TypeScript
import { Unit } from 'dimensional';
import { Flow, Head, Power, Speed } from './types';
/**
* Convert the string representation of the flow to the actual units
*/
export declare const FlowUnits: Record<Flow, Unit>;
/**
* Convert the string representation of the head to the actual units
*/
export declare const HeadUnits: Record<Head, Unit>;
/**
* Convert the string representation of the speed to the actual units
*/
export declare const SpeedUnits: Record<Speed, Unit>;
/**
* Convert the string representation of the power to the actual units
*/
export declare const PowerUnits: Record<Power, Unit>;