homebridge-http-sensors-switches
Version:
This plugin communicates with your devices over HTTP or MQTT. Currently it supports Light Bulb, Switches, Outlets, Fan, Garage Door, Shades / Blinds, Temperature/Humidity, Motion, Contact and Occupancy sensor, Door, Sprinkler, Valve, Air Quality, Smoke, C
10 lines (9 loc) • 355 B
TypeScript
import https from 'https';
export declare class HttpsAgentManager {
private readonly trustedCert?;
private readonly ignoreCertErrors?;
private readonly url?;
private httpsAgent?;
constructor(trustedCert?: string | undefined, ignoreCertErrors?: boolean | undefined, url?: string | undefined);
getAgent(): https.Agent | undefined;
}