import { IVenue } from './venue.interface'; export interface IPitch { type: 'pitches'; id: number | null; attributes?: { name: string; images: { small: Array; medium: Array; large: Array; }; sport: string; surface: string; format: string; showFFPopup: boolean; currency?: string; composite?: boolean; pitch_name?: string; }; relationships?: { venues?: { data: IVenue; }; }; links?: { weblink: string; }; }