UNPKG

engineering-cal

Version:

A TypeScript library for common engineering calculations across various disciplines.

6 lines (5 loc) 205 B
/** * Convert a length value between units. * For now, only supports converting meters to feet and vice versa. */ export declare function convertLength(value: number, from: string, to: string): number;