import type { BatchTransport } from "./transport.js"; let _transport: BatchTransport | null = null; export function _setTransport(transport: BatchTransport | null): void { _transport = transport; } export function _getTransport(): BatchTransport | null { return _transport; }