@qudtlib/core
Version:
Data model for QUDTLib
19 lines (18 loc) • 787 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DerivedUnitSearchMode = void 0;
/**
* 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.
*/
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 = exports.DerivedUnitSearchMode || (exports.DerivedUnitSearchMode = {}));
//# sourceMappingURL=derivedUnitSearchMode.js.map