From be3fc41a00eb7f90b807ecb202dffba2a59ca019 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sun, 1 Mar 2026 18:43:08 +0000 Subject: [PATCH] refactor(google-calendar): remove redundant type aliases (#48) 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,