jvsveml6070
Version:
Node.js package for the Vishay VEML6070 UVA Light Sensor, written in TypeScript.
14 lines (13 loc) • 1.08 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SensorError = exports.LogicError = exports.I2CError = exports.CommandRegisterError = exports.BaseError = void 0;
const BaseError_1 = require("./BaseError");
Object.defineProperty(exports, "BaseError", { enumerable: true, get: function () { return BaseError_1.BaseError; } });
const CommandRegisterError_1 = require("./CommandRegisterError");
Object.defineProperty(exports, "CommandRegisterError", { enumerable: true, get: function () { return CommandRegisterError_1.CommandRegisterError; } });
const I2CError_1 = require("./I2CError");
Object.defineProperty(exports, "I2CError", { enumerable: true, get: function () { return I2CError_1.I2CError; } });
const LogicError_1 = require("./LogicError");
Object.defineProperty(exports, "LogicError", { enumerable: true, get: function () { return LogicError_1.LogicError; } });
const SensorError_1 = require("./SensorError");
Object.defineProperty(exports, "SensorError", { enumerable: true, get: function () { return SensorError_1.SensorError; } });