import { Event } from './Event'; import { Product } from './Product'; import { Service } from './Service'; export interface Collection { name: string; description?: string; count: number; items: T[]; }