axis-discovery-ssdp
Version:
A Node.js SSDP (UPnP) client library written in TypeScript capable of searching for Axis Communication cameras.
12 lines • 326 B
TypeScript
/**
* Interface responsible for HTTP communication on the network.
*/
export interface IHttpClient {
/**
* Send GET request over the network.
* @param url Fully qualified URL.
* @returns Promise with response body.
*/
get(url: string): Promise<string>;
}
//# sourceMappingURL=IHttpClient.d.ts.map