8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
export type CalendarEvent = {
|
|
from: string;
|
|
fromTimestamp: number;
|
|
to: string;
|
|
toTimestamp: number;
|
|
fullDay: boolean;
|
|
description: string;
|
|
};
|