import {Event} from './event'; /** * Contains a list of events. */ export class EventList { public events: Array; public totalCount: number; }