export interface CollectionEndpointResponse { /** * 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; /** * IDs of Game records */ games?: number[]; }