export interface ICollector { id: string; name: string; slug: string; poster: { jpg: { full: string; thumb: string; }; webp: { full: string; thumb: string; }; }; } export type IGenre = ICollector; export type ICategory = ICollector;