One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Delete types directory

authored by

Evan Huang and committed by
GitHub
76849e0f f0db2df3

-13
-13
types/calendar.ts
··· 1 - interface CalendarEvent { 2 - id: string 3 - title: string 4 - startDate: Date 5 - endDate: Date 6 - isAllDay: boolean 7 - recurrence: "none" | "daily" | "weekly" | "monthly" | "yearly" 8 - location?: string 9 - participants: string[] 10 - notification: number 11 - description?: string 12 - color: string 13 - }