mirror of https://github.com/iptv-org/epg.git
29 lines
546 B
TypeScript
29 lines
546 B
TypeScript
import { Collection } from '@freearhey/core'
|
|
|
|
export type 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
|
|
logo: string
|
|
}
|
|
|
|
export type ChannelSearchableData = {
|
|
id: string
|
|
name: string
|
|
altNames: string[]
|
|
guideNames: string[]
|
|
streamNames: string[]
|
|
feedFullNames: string[]
|
|
}
|