Files

6 lines
96 B
TypeScript

export interface IMqttTopicSample {
topic: string;
payload: string;
retained?: boolean;
}