mirror of
https://github.com/iptv-org/iptv.git
synced 2026-06-25 21:10:11 +08:00
11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
export type FeedData = {
|
|
channel: string
|
|
id: string
|
|
name: string
|
|
is_main: boolean
|
|
broadcast_area: string[]
|
|
languages: string[]
|
|
timezones: string[]
|
|
video_format: string
|
|
}
|