UNPKG

@neutrium/quantity

Version:

The NeutriumJS unit conversion module.

8 lines (7 loc) 285 B
import { Decimal } from "@neutrium/math"; export interface QuantityDefinition { scalar: Decimal, // The numerical value of the quantity numerator: string[] // The units numerator - An array of unit tokens denominator: string[] // The units denominator - An array of unit tokens }