UNPKG

@aws-amplify/pubsub

Version:

Pubsub category of aws-amplify

11 lines (10 loc) 343 B
import { MqttOptions, MqttOverWS } from './MqttOverWS'; export interface AWSIoTOptions extends MqttOptions { region?: string; endpoint?: string; } export declare class AWSIoT extends MqttOverWS { constructor(options?: AWSIoTOptions); protected get region(): string | undefined; protected get endpoint(): Promise<string>; }