hedgedoc/commons/src/message-transporters/index.ts
Tilman Vatteroth 753c6e593f refactor: remove isomorphic-ws
The package caused some issues while working on other features.
Mostly because bundlers have been unable to determine the correct
websocket constructor.
So I replaced it with a more object-oriented approach.

Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-06-02 17:40:25 +02:00

11 lines
326 B
TypeScript

/*
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
export * from './message.js'
export * from './message-transporter.js'
export * from './realtime-user.js'
export * from './transport-adapter.js'
export * from './mocked-backend-transport-adapter.js'