mirror of
https://github.com/iptv-org/epg.git
synced 2026-07-13 14:49:12 +02:00
28 lines
509 B
TypeScript
28 lines
509 B
TypeScript
import { Collection } from '@freearhey/core'
|
|
|
|
export interface ChannelData {
|
|
id: string
|
|
name: string
|
|
alt_names: string[]
|
|
network: string
|
|
owners: Collection
|
|
country: string
|
|
subdivision: string
|
|
city: string
|
|
categories: Collection
|
|
is_nsfw: boolean
|
|
launched: string
|
|
closed: string
|
|
replaced_by: string
|
|
website: string
|
|
}
|
|
|
|
export interface ChannelSearchableData {
|
|
id: string
|
|
name: string
|
|
altNames: string[]
|
|
guideNames: string[]
|
|
streamNames: string[]
|
|
feedFullNames: string[]
|
|
}
|