UNPKG

463 BTypeScriptView Raw
1export declare class RootDescription {
2 readonly remoteAddress: string;
3 private readonly rootDescription;
4 private constructor();
5 static parse(remoteAddress: string, xml: string): Promise<RootDescription>;
6 get friendlyName(): string;
7 get modelDescription(): string | undefined;
8 get modelName(): string;
9 get modelNumber(): string | undefined;
10 get macAddress(): string | undefined;
11 get presentationUrl(): string | undefined;
12}