UNPKG

axis-discovery-ssdp

Version:

A Node.js SSDP (UPnP) client library written in TypeScript capable of searching for Axis Communication cameras.

10 lines (9 loc) 373 B
import { IHttpClient } from '../options'; import { RootDescription } from './RootDescription'; export declare class RootDescriptionRequest { private readonly remoteAddress; private readonly location; private readonly httpClient; constructor(remoteAddress: string, location: string, httpClient: IHttpClient); send(): Promise<RootDescription>; }