Skip to content

Commit

Permalink
fix: remove type modifiers on imports for better TS compatibility (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
ismaelgt committed Jan 11, 2024
1 parent dfffcc7 commit b0aba61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/shared/common/src/internal/stream/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import StreamingProcessor from './StreamingProcessor';
import { type StreamingErrorHandler } from './types';
import type { StreamingErrorHandler } from './types';

export { StreamingProcessor, type StreamingErrorHandler };
export { StreamingProcessor };
export type { StreamingErrorHandler };

0 comments on commit b0aba61

Please sign in to comment.