@kuriousdesign/machine-sdk
Version:
Shared data types and helpers for machine-related repositories
12 lines (11 loc) • 324 B
TypeScript
export interface TopicData {
timestamp: number;
payload: unknown;
}
export declare const MqttTopics: {
readonly BRIDGE_STATUS: "bridge/status";
readonly BRIDGE_CMD: "bridge/cmd";
readonly DEVICE_MAP: "deviceMap";
readonly HMI_ACTION_REQ: "hmi/action_req";
readonly EXT_SERVICE: "ext_service";
};