UNPKG

units-converter-ts

Version:
5 lines (4 loc) 217 B
import { IMeasure } from '../types'; export type angleSystems = 'metric'; export type angleUnits = 'rev' | 'deg' | 'rad' | 'grad' | 'arcmin' | 'arcsec'; export declare const angle: IMeasure<angleSystems, angleUnits>;