UNPKG

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