UNPKG

soundtouch-api

Version:
12 lines (11 loc) 395 B
import { Component } from './component'; import { NetworkInfo } from './network-info'; import { XMLElement } from './utils'; export interface Info { readonly deviceId: string; readonly name: string; readonly type: string; readonly components: Component[]; readonly networkInfo: NetworkInfo[]; } export declare function infoFromElement(element: XMLElement): Info | undefined;