| 11 | const NS = "z2m:mqtt"; |
| 12 | |
| 13 | export interface MqttPublishOptions { |
| 14 | clientOptions: IClientPublishOptions; |
| 15 | baseTopic: string; |
| 16 | skipLog: boolean; |
| 17 | skipReceive: boolean; |
| 18 | meta: {isEntityState?: boolean}; |
| 19 | } |
| 20 | |
| 21 | export default class Mqtt { |
| 22 | private publishedTopics = new Set<string>(); |
nothing calls this directly
no outgoing calls
no test coverage detected