export interface TitleEndpointResponse { /** * If count parameter is set in the options array, the value from IGDB will be stored here. */ count?: number; id: number; name: string; slug: string; url: string; /** * Unix epoch */ created_at: number; /** * Unix epoch */ updated_at: number; description?: string; /** * IDs of Game records (expandable) */ games?: number[]; }