import type { IRawThumbUrls } from './raw-thumbs-urls'; import type { IRawCategoryCard } from './raw-category-card'; export interface IRawCategoryInfo { guid: string; name: string; title: string; tags: string[]; // unused meta_title: string; // unused meta_description: string; meta_keywords: string; // unused language_guid: string; // unused language_name: string; // unused language_title: string; // unused is_top: boolean; // unused is_primary_filter: boolean; // unused videosCount: number; video_guid: string; // unused video_md5: string; // unused thumb_number: number; // unused description: string; header: string; fullDescription: string; video_thumb_urls: IRawThumbUrls; related: IRawCategoryCard[] }