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