fix: change MessageTypes export from type to value in index.ts
All checks were successful
CI / build (push) Successful in 18s
CI / publish (push) Successful in 15s

This commit is contained in:
2025-09-06 19:40:40 +01:00
parent 68f31018ef
commit dcc343fb02

View File

@@ -1,7 +1,7 @@
export { numberToUint16BE, numberToUint32BE } from "./utilities/number";
export { unpackIncomingPacket } from "./messages/packet";
export { packers, unpackers } from "./mapping";
export type { MessageTypes } from "./common";
export { MessageTypes } from "./common";
export type { IncomingPacket, OutgoingPacket } from "./messages/packet";
export type { SubscribeMessage } from "./messages/subscribe";
export type { BasicMessage } from "./messages/basic";