From 91eef58186ad6be544524eed832ffb96866c081d Mon Sep 17 00:00:00 2001 From: le king fu Date: Mon, 6 Apr 2026 10:39:12 -0400 Subject: [PATCH] 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) --- src/shared/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/types.ts b/src/shared/types.ts index 950c5df..f188076 100644 --- a/src/shared/types.ts +++ b/src/shared/types.ts @@ -1,4 +1,4 @@ -export type RecurrenceType = 'daily' | 'weekly' | 'monthly' | 'yearly'; +export type { RecurrenceType } from './recurrence'; export type Priority = 0 | 1 | 2 | 3;