UNPKG

@qudtlib/core

Version:

Data model for QUDTLib

16 lines (15 loc) 637 B
/** * Governs the algorithm used to find units based on their derived units. The DerivedUnitSearchMode * is mapped to the {@link FactorUnitMatchingMode} which governs individual unit/factor unit * matching. */ export var DerivedUnitSearchMode; (function (DerivedUnitSearchMode) { /** Return all matching units. */ DerivedUnitSearchMode[DerivedUnitSearchMode["ALL"] = 0] = "ALL"; /** * Return the best matching unit. */ DerivedUnitSearchMode[DerivedUnitSearchMode["BEST_MATCH"] = 1] = "BEST_MATCH"; })(DerivedUnitSearchMode || (DerivedUnitSearchMode = {})); //# sourceMappingURL=derivedUnitSearchMode.js.map