mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-01-11 09:02:01 +00:00
753c6e593f
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>
11 lines
326 B
TypeScript
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'
|