pinkmine/libs/event-emitter/src/models/calendar-event.ts

8 lines
154 B
TypeScript

export type CalendarEvent = {
from: string;
fromTimestamp: number;
to: string;
toTimestamp: number;
fullDay: boolean;
description: string;
};