export interface ChannelsModel { data: Datum[]; } export interface Datum { id: number; name: string; image: string; }