UNPKG

jvsveml6070

Version:

Node.js package for the Vishay VEML6070 UVA Light Sensor, written in TypeScript.

18 lines (17 loc) 483 B
import { IntegrationTime as IntegrationTimeEnum } from './enums/module'; export declare class IntegrationTime { /** * The integration time enumeration value. */ readonly value: IntegrationTimeEnum; /** * Creates a new `IntegrationTime` instance. * * @param value - The integration time enumeration value. */ constructor(value: IntegrationTimeEnum); /** * The integration time multiplier. */ get multiplier(): number; }