Skip to content

Commit

Permalink
Node: Fix types in mediasoup.types are empty/undefined
Browse files Browse the repository at this point in the history
Fixes #1451

### Details

- If `index.ts` exports `types.ts` and vice-versa.... problems.
  • Loading branch information
ibc committed Sep 7, 2024
1 parent 06b813d commit 50eba77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### NEXT

- Sign self generated DTLS certificate with SHA256 ([PR #1450](https://github.com/versatica/mediasoup/pull/1450)).
- Node: Fix `mediasoup.types` exported types are empty.

### 3.14.13

Expand Down
2 changes: 1 addition & 1 deletion node/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type * from './index';
export type { Observer, ObserverEvents, LogEventListeners } from './index';
export type * from './RtpParameters';
export type * from './SctpParameters';
export type * from './SrtpParameters';
Expand Down

0 comments on commit 50eba77

Please sign in to comment.