UNPKG

soundtouch-api

Version:
8 lines (7 loc) 244 B
import { ArtStatus } from './special-types'; import { XMLElement } from './utils'; export interface Art { readonly status: ArtStatus; readonly url: string; } export declare function artFromElement(element: XMLElement): Art | undefined;