UNPKG

units-converter-ts

Version:
5 lines (4 loc) 196 B
import { IMeasure } from '../types'; export type powerSystems = 'metric'; export type powerUnits = 'mW' | 'W' | 'kW' | 'MW' | 'GW'; export declare const power: IMeasure<powerSystems, powerUnits>;