1 | import { MqttOptions, MqttOverWS } from './MqttOverWS';
|
2 | export interface AWSIoTOptions extends MqttOptions {
|
3 | region?: string;
|
4 | endpoint?: string;
|
5 | }
|
6 | export declare class AWSIoT extends MqttOverWS {
|
7 | constructor(options?: AWSIoTOptions);
|
8 | protected get region(): string | undefined;
|
9 | protected get endpoint(): Promise<string>;
|
10 | }
|