import { IHttpClient } from './IHttpClient'; /** * The SSDP discovery options. */ export interface IOptions { /** * An implementation of a HTTP client. Default value is based * on Request but a * custom implementation can be provided. This can be useful if discovery * is required in an Electron application where one wish to benefit from * the proxy configuration provided by using Electron's * net.request. */ httpClient?: IHttpClient; }