Browse Source

add IChannelApiData

visuddhinanda 3 năm trước cách đây
mục cha
commit
f61417e382
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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;