Refactoring

This commit is contained in:
2026-03-10 17:35:15 +01:00
parent 61f045943c
commit 7a2522cf32
15 changed files with 1405 additions and 450 deletions

View File

@@ -1,11 +1,13 @@
import { Packet } from "./packet";
import {
RouteType,
PayloadType,
} from "./types";
export * as types from './packet.types';
export * from './parser';
export * from './identity';
export { Packet } from './packet';
import { Packet as _Packet } from './packet';
import { RouteType, PayloadType } from './packet.types';
export default {
Packet,
Packet: _Packet,
RouteType,
PayloadType,
};