fix: remove duplicate RecurrenceType definition in shared/types (#34)

Re-export from shared/recurrence instead of redefining.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
le king fu 2026-04-06 10:39:12 -04:00
parent b277232462
commit 91eef58186

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;