Skip to content

Commit

Permalink
Make types.ts only export types
Browse files Browse the repository at this point in the history
Fixes #273
  • Loading branch information
ibc committed Jul 6, 2023
1 parent 734dabb commit 4175d40
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
export * from './Device';
export * from './Transport';
export * from './Producer';
export * from './Consumer';
export * from './DataProducer';
export * from './DataConsumer';
export * from './RtpParameters';
export * from './SctpParameters';
export * from './handlers/HandlerInterface';
export * from './errors';
export type * from './Device';
export type * from './Transport';
export type * from './Producer';
export type * from './Consumer';
export type * from './DataProducer';
export type * from './DataConsumer';
export type * from './RtpParameters';
export type * from './SctpParameters';
export type * from './handlers/HandlerInterface';
export type * from './errors';
export type { ScalabilityMode } from './scalabilityModes';

export type AppData =
Expand Down

0 comments on commit 4175d40

Please sign in to comment.