channel.ts 185 B

12345678
  1. export type StudioChannelResponse = {
  2. isConnected: boolean;
  3. channelID: number|null;
  4. channelName: string|null;
  5. handle: string|null;
  6. thumbnailUrl: string|null;
  7. isActive: boolean;
  8. };