@@ -3,20 +3,14 @@ export type Item = {
33 persistence : import ( "../items/item-persistence" ) ;
44 semantics : import ( "../items/item-semantics" ) ;
55 readonly type : string ;
6- /** @private */
76 readonly groupType : string ;
87 readonly name : string ;
98 readonly label : string ;
109 readonly state : string ;
1110 readonly numericState : number ;
1211 readonly quantityState : import ( "../quantity" ) . Quantity ;
1312 readonly boolState : boolean ;
14- readonly rawState : HostState ; /**
15- * Item state changed from
16- *
17- * @param {string } value
18- * @returns {ItemTriggerConfig }
19- */
13+ readonly rawState : HostState ;
2014 readonly previousState : string ;
2115 readonly previousNumericState : number ;
2216 readonly previousQuantityState : import ( "../quantity" ) . Quantity ;
@@ -32,46 +26,26 @@ export type Item = {
3226 rawMetadata : any ;
3327 readonly value : string ;
3428 readonly configuration : any ;
35- toString ( ) : any ; /**
36- * Specifies a time schedule for the rule to fire.
37- *
38- * @param {string } time the time expression (in `HH:mm`) defining the triggering schedule
39- * @returns {TimeOfDayTriggerConfig } the trigger config
40- */
29+ toString ( ) : any ;
4130 } | {
4231 namespace : {
4332 rawMetadata : any ;
4433 readonly value : string ;
4534 readonly configuration : any ;
46- toString ( ) : any ; /**
47- * Specifies a time schedule for the rule to fire.
48- *
49- * @param {string } time the time expression (in `HH:mm`) defining the triggering schedule
50- * @returns {TimeOfDayTriggerConfig } the trigger config
51- */
35+ toString ( ) : any ;
5236 } ;
5337 } ;
5438 replaceMetadata ( namespace : string , value : string , configuration ?: any ) : {
5539 rawMetadata : any ;
5640 readonly value : string ;
5741 readonly configuration : any ;
58- toString ( ) : any ; /**
59- * Specifies a time schedule for the rule to fire.
60- *
61- * @param {string } time the time expression (in `HH:mm`) defining the triggering schedule
62- * @returns {TimeOfDayTriggerConfig } the trigger config
63- */
42+ toString ( ) : any ;
6443 } ;
6544 removeMetadata ( namespace ?: string ) : {
6645 rawMetadata : any ;
6746 readonly value : string ;
6847 readonly configuration : any ;
69- toString ( ) : any ; /**
70- * Specifies a time schedule for the rule to fire.
71- *
72- * @param {string } time the time expression (in `HH:mm`) defining the triggering schedule
73- * @returns {TimeOfDayTriggerConfig } the trigger config
74- */
48+ toString ( ) : any ;
7549 } ;
7650 sendCommand ( value : any , expire ?: JSJoda . Duration , onExpire ?: any ) : void ;
7751 sendCommandIfDifferent ( value : any ) : boolean ;
0 commit comments