@putridparrot/conversion-units
Version:
Units of measure converters package
72 lines (71 loc) • 2.29 kB
JavaScript
;
// <auto-generated>
// This code was generated by the UnitCodeGenerator tool
//
// Changes to this file will be lost if the code is regenerated
// </auto-generated>
Object.defineProperty(exports, "__esModule", { value: true });
exports.LuminousEnergy = void 0;
var LuminousEnergy;
(function (LuminousEnergy) {
var LumenHour = /** @class */ (function () {
function LumenHour() {
}
LumenHour.toTalbot = function (value) {
return value * 3600.0;
};
LumenHour.toLumenMinute = function (value) {
return value * 60.0;
};
LumenHour.toLumenSecond = function (value) {
return value * 3600.0;
};
return LumenHour;
}());
LuminousEnergy.LumenHour = LumenHour;
var LumenMinute = /** @class */ (function () {
function LumenMinute() {
}
LumenMinute.toTalbot = function (value) {
return value * 60.0;
};
LumenMinute.toLumenHour = function (value) {
return value / 60.0;
};
LumenMinute.toLumenSecond = function (value) {
return value * 60.0;
};
return LumenMinute;
}());
LuminousEnergy.LumenMinute = LumenMinute;
var LumenSecond = /** @class */ (function () {
function LumenSecond() {
}
LumenSecond.toTalbot = function (value) {
return value;
};
LumenSecond.toLumenHour = function (value) {
return value / 3600.0;
};
LumenSecond.toLumenMinute = function (value) {
return value / 60.0;
};
return LumenSecond;
}());
LuminousEnergy.LumenSecond = LumenSecond;
var Talbot = /** @class */ (function () {
function Talbot() {
}
Talbot.toLumenSecond = function (value) {
return value;
};
Talbot.toLumenHour = function (value) {
return value / 3600.0;
};
Talbot.toLumenMinute = function (value) {
return value / 60.0;
};
return Talbot;
}());
LuminousEnergy.Talbot = Talbot;
})(LuminousEnergy = exports.LuminousEnergy || (exports.LuminousEnergy = {}));