mirror of
https://github.com/iptv-org/iptv.git
synced 2026-06-22 21:08:31 +08:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
export type StreamData = {
|
|
channel: string | null
|
|
feed: string | null
|
|
name: string | null
|
|
url: string
|
|
referrer: string | null
|
|
user_agent: string | null
|
|
quality: string | null
|
|
label: string | null
|
|
directives: string[]
|
|
}
|