File size: 377 Bytes
84121fd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
export interface Channel {
id: string
name: string
url: string
logo?: string
category: string
group?: string
}
export interface ChannelCategory {
name: string
count: number
}
export interface ChannelResponse {
channels: Channel[]
categories: ChannelCategory[]
}
export interface ViewerResponse {
viewers: number
switched: boolean
message?: string
} |