From 4562e1da51dcb7396c17cca6166d8f373e85604d Mon Sep 17 00:00:00 2001 From: kenneth Date: Sun, 1 Mar 2026 18:37:48 +0000 Subject: [PATCH] refactor(google-calendar): remove redundant type aliases The *TypeType re-exports are unnecessary since consumers can use import type to get the type. Co-authored-by: Ona --- packages/aris-source-google-calendar/src/index.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/aris-source-google-calendar/src/index.ts b/packages/aris-source-google-calendar/src/index.ts index 3549014..59537a9 100644 --- a/packages/aris-source-google-calendar/src/index.ts +++ b/packages/aris-source-google-calendar/src/index.ts @@ -1,7 +1,6 @@ export { NextEventKey, type NextEvent } from "./calendar-context" export { CalendarFeedItemType, - type CalendarFeedItemType as CalendarFeedItemTypeType, type CalendarAllDayFeedItem, type CalendarEventFeedItem, type CalendarFeedItem, @@ -10,7 +9,6 @@ export { DefaultGoogleCalendarClient } from "./google-calendar-api" export { GoogleCalendarSource, type GoogleCalendarSourceOptions } from "./google-calendar-source" export { EventStatus, - type EventStatus as EventStatusType, type ApiCalendarEvent, type ApiEventDateTime, type CalendarEventData,