import { ContentEntry } from '../core'; export interface EventDateInfo { startDayOfWeek: string; startStamp: string; startMonth: string; startDay: string; startTime: string; endDayOfWeek: string; endMonth: string; endDay: string; endTime: string; allDay: boolean; } export interface EventLocation { title: string; } export interface EventEntry extends ContentEntry, EventDateInfo { location: EventLocation[]; summary: string; } //# sourceMappingURL=events.d.ts.map