import { IStatusData } from "../engine/status_data"; /** * The class that represents {@link IStatusData} received from a sensor like bluetooth * dongle. */ export interface ISensorData extends IStatusData { /** Gets or sets the MAC address of the sensor. */ address?: number; } //# sourceMappingURL=sensor_data.d.ts.map