interface picturesType { md5: string; type: string; } interface dataType { type: string; id: string; name: string; title: string; logo: null | string; description: null | string; slug: string; background_color: string; pictures: picturesType[]; __TYPE__: 'channel'; } interface channelDataType { item_id: string; id: string; type: string; data: dataType[]; target: string; title: string; pictures: picturesType[]; weight: number; background_color: string; } export interface channelSearchType { data: channelDataType[]; count: number; total: number; } export {};