adjust for smartclient output

This commit is contained in:
2018-06-25 13:14:03 +02:00
parent 718ac667d1
commit 28fa32d48d
17 changed files with 842 additions and 401 deletions

View File

@ -13,6 +13,15 @@ export interface HasStateAndFeedbackTopic extends HasStateTopic {
getStateFeedbackTopic() : string
}
export interface HasStateAndFeedbackTopicAndLabel extends HasFeedbackTopic {
getLabel() : string
}
export interface HasStateAndFeedbackTopicAndLabelAndRoom extends HasStateAndFeedbackTopic {
getLabel() : string
getRoom() : string
}
export interface HasFeedbackTopic {
getStateFeedbackTopic() : string
}