Procházet zdrojové kódy

add IChannelApiData

visuddhinanda před 3 roky
rodič
revize
f61417e382
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6 0
      dashboard/src/components/api/Channel.ts

+ 6 - 0
dashboard/src/components/api/Channel.ts

@@ -1,5 +1,11 @@
 import { IStudioApiResponse } from "./Auth";
 
+export interface IChannelApiData {
+  id: string;
+  name: string;
+  type: string;
+}
+
 export type ChannelInfoProps = {
   channelName: string;
   channelId: string;