Skip to content

Commit 3f5ca64

Browse files
committed
fix: update type coercion
1 parent a0cc985 commit 3f5ca64

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,9 @@ export const createMainChannelFromSockets = (
290290
}),
291291
).pipe(share());
292292

293+
// TODO: Fix this after updating @nteract/messaging.
293294
return new BidirectionalChannel(
294295
incomingMessages,
295296
outgoingMessages,
296-
) as Channels;
297+
) as unknown as Channels;
297298
};

0 commit comments

Comments
 (0)