hoffmation-base 3.0.0-alpha.91 → 3.0.0-alpha.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import { TemperatureSensorChangeAction } from '../../../models';
|
|
1
|
+
import { iJsonOmitKeys, TemperatureSensorChangeAction } from '../../../models';
|
|
2
2
|
import { iTemperatureSensor } from '../baseDeviceInterfaces';
|
|
3
|
-
import { iJsonOmitKeys } from '../../../models/iJsonOmitKeys';
|
|
4
3
|
export declare class TemperatureSensor implements iJsonOmitKeys {
|
|
5
4
|
private readonly _device;
|
|
6
5
|
/** @inheritDoc */
|
|
@@ -17,6 +16,7 @@ export declare class TemperatureSensor implements iJsonOmitKeys {
|
|
|
17
16
|
private _temperaturCallbacks;
|
|
18
17
|
constructor(_device: iTemperatureSensor);
|
|
19
18
|
set temperature(val: number);
|
|
19
|
+
get temperature(): number;
|
|
20
20
|
/**
|
|
21
21
|
* Persists the current temperature sensor information to the database
|
|
22
22
|
*/
|