/** * MoQ networking layer for browsers: connect to a relay, then publish and consume * broadcasts, tracks, groups, and frames over WebTransport (or a WebSocket fallback). * * @module */ /** Re-export of {@link https://jsr.io/@moq/signals | @moq/signals}, the reactive primitives used throughout this package. */ export * as Signals from "@moq/signals"; export * from "./announced"; export * from "./bandwidth"; export * from "./broadcast"; /** Connection helpers: connect to or accept a MoQ session and reconnect on failure. */ export * as Connection from "./connection/index"; export * from "./group"; /** Broadcast path utilities with delimiter-aware prefix matching. */ export * as Path from "./path"; /** Branded time types (nanoseconds, microseconds, milliseconds, seconds) with conversions. */ export * as Time from "./time"; export * from "./track"; /** QUIC variable-length integer encoding and decoding. */ export * as Varint from "./varint"; //# sourceMappingURL=index.d.ts.map