soundtouch-api
Version:
SoundTouch API using TypeScript
10 lines (9 loc) • 331 B
TypeScript
import { XMLElement } from './utils';
export interface BassCapabilities {
readonly deviceId: string;
readonly isAvailable: boolean;
readonly min?: number;
readonly max?: number;
readonly default?: number;
}
export declare function bassCapabilitiesFromElement(element: XMLElement): BassCapabilities | undefined;