feat: extract shared types, colors, priority and recurrence (#34) #41

Merged
maximus merged 2 commits from issue-34-shared-types into master 2026-04-06 16:57:30 +00:00
Showing only changes of commit 91eef58186 - Show all commits

View file

@ -1,4 +1,4 @@
export type RecurrenceType = 'daily' | 'weekly' | 'monthly' | 'yearly';
export type { RecurrenceType } from './recurrence';
export type Priority = 0 | 1 | 2 | 3;