UNPKG

364 BTypeScriptView Raw
1import { IHttpClient } from '../options';
2import { RootDescription } from './RootDescription';
3export declare class RootDescriptionRequest {
4 private readonly remoteAddress;
5 private readonly location;
6 private readonly httpClient;
7 constructor(remoteAddress: string, location: string, httpClient: IHttpClient);
8 send(): Promise<RootDescription>;
9}