mirror of
https://github.com/iptv-org/epg.git
synced 2026-07-06 19:59:22 +02:00
11 lines
211 B
TypeScript
11 lines
211 B
TypeScript
export interface StreamData {
|
|
channel: string | null
|
|
feed: string | null
|
|
name?: string
|
|
url: string
|
|
referrer: string | null
|
|
user_agent: string | null
|
|
quality: string | null
|
|
label: string | null
|
|
}
|