UNPKG

javascript-ampache

Version:
17 lines (14 loc) 280 B
import { UID } from "../base"; export type LiveStreamResponse = { id: UID; name: string; url: string; codec: string; catalog: UID; site_url: string; }; export type LiveStreamsResponse = { total_count: number; md5: string; live_stream: LiveStreamResponse[]; };