Skip to content

Commit c5301c5

Browse files
authored
fix: Allow using --isolatedModules flag in tsconfig by fixing exports in event_processor (#610)
* Fix export * Remove LocalStoragePendingEventsDisaptcher from export type
1 parent d87f45f commit c5301c5

File tree

1 file changed

+1
-1
lines changed
  • packages/optimizely-sdk/lib/core/event_processor

1 file changed

+1
-1
lines changed

packages/optimizely-sdk/lib/core/event_processor/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ export function createEventProcessor(
2222
return new LogTierV1EventProcessor(...args);
2323
}
2424

25-
export { EventProcessor, LocalStoragePendingEventsDispatcher } from '@optimizely/js-sdk-event-processor';
25+
export type { EventProcessor } from '@optimizely/js-sdk-event-processor';
2626

2727
export default { createEventProcessor, LocalStoragePendingEventsDispatcher };

0 commit comments

Comments
 (0)