UNPKG

mqtt-react-hooks

Version:

ReactJS library for Pub/Sub communication with an MQTT broker using Hooks

33 lines (32 loc) 913 B
/// <reference types="react" /> import { MqttClient, IClientOptions } from 'mqtt'; export interface Error { name: string; message: string; stack?: string; } export interface ConnectorProps { brokerUrl: string; options?: IClientOptions; parserMethod?: (message: any) => string; children: React.ReactNode; } export interface IMqttContext { connectionStatus: string | Error; client?: MqttClient | null; parserMethod?: (message: any) => string; } export interface IMessageStructure { [key: string]: string; } export interface IMessage { topic: string; message?: string | IMessageStructure; } export interface IUseSubscription { topic: string | string[]; client?: MqttClient | null; message?: IMessage; connectionStatus: string | Error; } export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;