| 123456789101112131415161718192021222324252627282930313233 |
- export interface ChannelListItem {
- channelSID: string;
- name: string;
- handle: string|null;
- thumbnailUrl: string|null;
- subscriberCount: number;
- isLive: boolean;
- viewerCount: number;
- videoId: string|null;
- }
- export interface ChannelStatusUpdate {
- channelSID: string;
- isLive: boolean;
- viewerCount: number;
- videoId: string|null;
- }
- export interface ChannelDetail {
- channelSID: string;
- name: string;
- handle: string|null;
- youTubeUrl: string;
- thumbnailUrl: string|null;
- bannerUrl: string|null;
- description: string|null;
- subscriberCount: number;
- videoCount: number;
- isVerified: boolean;
- isLive: boolean;
- videoId: string|null;
- liveTitle: string|null;
- }
|