social-media
Version:
17 lines (16 loc) • 430 B
TypeScript
/// <reference types="core-js" />
/// <reference types="web2cal" />
export declare class EventModel {
id: number;
name: string;
instructor: string;
startTime: Date;
endTime: Date;
description: string;
allDay: boolean;
repeatEvent: any;
groupId: string;
location: string;
toEventData(group: web2cal.GroupData): web2cal.EventData;
copyFrom(event: EventModel): void;
}