Files

6 lines
96 B
TypeScript
Raw Permalink Normal View History

2026-05-05 12:01:30 +00:00
export interface IMqttTopicSample {
topic: string;
payload: string;
retained?: boolean;
}