From c9f8ad929b2cc7f5612af8067fe1f20ff9a5dcb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Wa=C5=9Bniowski?= Date: Fri, 14 Jun 2024 15:29:37 +0200 Subject: [PATCH] feat: expose getCurrentConnectionType with ConnectionType type (#80) Co-authored-by: kwasniow --- src/peer-connection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/peer-connection.ts b/src/peer-connection.ts index ea886b9..9529662 100644 --- a/src/peer-connection.ts +++ b/src/peer-connection.ts @@ -404,4 +404,4 @@ class PeerConnection extends EventEmitter { } export { ConnectionState } from './connection-state-handler'; -export { MediaStreamTrackKind, PeerConnection, RTCDataChannelOptions }; +export { ConnectionType, MediaStreamTrackKind, PeerConnection, RTCDataChannelOptions };